mirror of
https://github.com/tj/git-extras.git
synced 2026-09-15 01:46:25 -04:00
git-summary: remove stray \ in grep call (#1010)
This commit is contained in:
parent
7c4152ce83
commit
4fff03f429
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue