Skip to content

Commit

Permalink
Merge pull request #578 from tardypad/count_fix_extra_arguments
Browse files Browse the repository at this point in the history
count: remove usage of extra arguments for detailed display
  • Loading branch information
spacewander authored Dec 5, 2016
2 parents 76694bc + fae4c29 commit 15ae263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/git-count
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 15ae263

Please sign in to comment.