From f6c2902fe484b572e136661c1a5a42f64894a36e Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Fri, 5 Oct 2012 13:57:31 -0400 Subject: [PATCH] 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. --- tools/build/gnome-shell-build-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/gnome-shell-build-setup.sh b/tools/build/gnome-shell-build-setup.sh index 8ff7fbbc9..a3c0cbe6f 100755 --- a/tools/build/gnome-shell-build-setup.sh +++ b/tools/build/gnome-shell-build-setup.sh @@ -339,7 +339,7 @@ old="`readlink $HOME/bin/git-bz`" new="`readlink $HOME/bin/git-bz`" 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'" fi