Merge pull request #360 from spacewander/master

correct the broken regex
This commit is contained in:
hemanth.hm 2015-04-25 21:44:15 +05:30
commit e16e90e9b9

View file

@ -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