projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76e712f
)
count-objects: squelch error from find on sparse object directory.
author
Junio C Hamano
<junkio@cox.net>
Wed, 19 Oct 2005 22:01:50 +0000
(15:01 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 19 Oct 2005 22:01:50 +0000
(15:01 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-count-objects.sh
patch
|
blob
|
history
diff --git
a/git-count-objects.sh
b/git-count-objects.sh
index
74ee4f3
..
843d2fd
100755
(executable)
--- a/
git-count-objects.sh
+++ b/
git-count-objects.sh
@@
-2,7
+2,7
@@
. git-sh-setup
-echo $(find "$GIT_DIR/objects"/?? -type f -print | wc -l) objects, \
+echo $(find "$GIT_DIR/objects"/?? -type f -print
2>/dev/null
| wc -l) objects, \
$({
echo 0
# "no-such" is to help Darwin folks by not using xargs -r.