aboutsummaryrefslogtreecommitdiff
path: root/git-fetch.sh
diff options
context:
space:
mode:
authorSergey Vlasov <vsu@altlinux.ru>2006-07-14 19:06:57 +0400
committerJunio C Hamano <junkio@cox.net>2006-07-14 11:33:14 -0700
commit7eae7b993ec3c1f5dfeb78d79673627b48d5f772 (patch)
treea95f41276d28e2639c4d5f5c7defb5374ca024d7 /git-fetch.sh
parentd5b9e6cfa7a20932ca17649c9172619c9d961db4 (diff)
downloadgit-7eae7b993ec3c1f5dfeb78d79673627b48d5f772.tar.gz
git-7eae7b993ec3c1f5dfeb78d79673627b48d5f772.tar.xz
Fix "git-fetch --tags" exit status when nothing has been changed
After commit 55b7835e1b81a6debc7648149d2b8a4c5c64ddba git-fetch --tags exits with status 1 when no tags have been changed, which breaks calling git-fetch from scripts. Signed-off-by: Sergey Vlasov <vsu@altlinux.ru> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-fetch.sh')
-rwxr-xr-xgit-fetch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fetch.sh b/git-fetch.sh
index ff1769952..ee99280a2 100755
--- a/git-fetch.sh
+++ b/git-fetch.sh
@@ -153,7 +153,7 @@ fast_forward_local () {
then
if now_=$(cat "$GIT_DIR/$1") && test "$now_" = "$2"
then
- [ "$verbose" ] && echo >&2 "* $1: same as $3"
+ [ "$verbose" ] && echo >&2 "* $1: same as $3" ||:
else
echo >&2 "* $1: updating with $3"
git-update-ref -m "$rloga: updating tag" "$1" "$2"