diff --git a/bin/git-count b/bin/git-count index 5845ddd53..9ee91c89c 100755 --- a/bin/git-count +++ b/bin/git-count @@ -1,7 +1,7 @@ #!/usr/bin/env bash if test "$1" = "--all"; then - git shortlog -n -s $@ | awk '{print substr($0,index($0,$2)) " (" $1 ")"}' + git shortlog -n -s | awk '{print substr($0,index($0,$2)) " (" $1 ")"}' echo fi