diff --git a/bin/git-summary b/bin/git-summary index 9374f13..65303c9 100755 --- a/bin/git-summary +++ b/bin/git-summary @@ -162,7 +162,7 @@ single_file() { while read -r data do if [[ $(file "$data") = *text* ]]; then - git blame --line-porcelain "$data" 2>/dev/null | grep "^author\ " | LC_ALL=C sed -n 's/^author //p'; + git blame --line-porcelain "$data" 2>/dev/null | grep "^author " | LC_ALL=C sed -n 's/^author //p'; fi done }