From 4fff03f4297b31df17e122e42a4583a70a292b29 Mon Sep 17 00:00:00 2001 From: Kurban Mallachiev Date: Mon, 19 Dec 2022 14:02:29 +0400 Subject: [PATCH] git-summary: remove stray \ in grep call (#1010) --- bin/git-summary | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }