mirror of
https://github.com/tj/git-extras.git
synced 2026-09-12 16:36:22 -04:00
Merge pull request #360 from spacewander/master
correct the broken regex
This commit is contained in:
commit
e16e90e9b9
|
|
@ -8,7 +8,7 @@ project=${PWD##*/}
|
|||
function single_file {
|
||||
while read data
|
||||
do
|
||||
if [[ $(file $data) = *text ]]; then #
|
||||
if [[ $(file $data) = *text* ]]; then #
|
||||
git blame --line-porcelain $data | sed -n 's/^author //p';
|
||||
fi
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in a new issue