diff options
author | Junio C Hamano <junkio@cox.net> | 2006-01-07 00:29:48 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-07 00:29:48 -0800 |
commit | 3be7098ce444395959c856de1eb9312550193aac (patch) | |
tree | 75469653c4b794bea13dddd8def12fe520cf5ef0 /git-prune.sh | |
parent | 7d0e65b892ff0adf2ba6626bbe7cdfc723a8b702 (diff) | |
download | git-3be7098ce444395959c856de1eb9312550193aac.tar.gz |
prune: do not show error from pack-redundant when no packs are found.
When there is no pack yet, git-prune leaked an error message
from "git-pack-redundant --all" which complained that there is
no pack. Squelch the annoying message.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-prune.sh')
-rwxr-xr-x | git-prune.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git-prune.sh b/git-prune.sh index 7b61d05c4b..c5a5d29aaa 100755 --- a/git-prune.sh +++ b/git-prune.sh @@ -33,8 +33,7 @@ sed -ne '/unreachable /{ git-prune-packed $dryrun -redundant=$(git-pack-redundant --all) -if test "" != "$redundant" +if redundant=$(git-pack-redundant --all 2>/dev/null) && test "" != "$redundant" then if test "" = "$dryrun" then |