gnome-shell-build-setup.sh: Fix warning about git-bz symlink

The warning when changing the git-bz symlink triggered on
initial install. Suppress that.
This commit is contained in:
Owen W. Taylor 2012-10-05 13:57:31 -04:00
parent 1e890a8a0a
commit f6c2902fe4

View File

@ -339,7 +339,7 @@ old="`readlink $HOME/bin/git-bz`"
new="`readlink $HOME/bin/git-bz`" new="`readlink $HOME/bin/git-bz`"
echo "done" echo "done"
if test "$old" != "$new" ; then if test "$old" != "$new" -a "$old" != "" ; then
echo "WARNING: $HOME/bin/git-bz was changed from '$old' to '$new'" echo "WARNING: $HOME/bin/git-bz was changed from '$old' to '$new'"
fi fi