Fix shift in git-count

This commit is contained in:
Tj Holowaychuk 2010-09-07 08:55:36 -07:00
parent 8d4f55b048
commit aefe5c0f1c

View file

@ -1,7 +1,6 @@
#!/bin/sh
arg=$1; shift
if test "$arg" = "--all"; then
if test "$1" = "--all"; then
git shortlog -n $@ | grep "):" | sed 's|:||'
echo
fi