Fix diff-remove-abspath on OSX

\t does not work on OS-X and just matches the letter t. This commit
replaces it with a literal tab instead.
This commit is contained in:
Johanna Amann 2020-11-30 13:53:38 +00:00 committed by Christian Kreibich
parent f3482efb1d
commit 7040e30431

View file

@ -9,4 +9,4 @@ else
fi fi
$sed 's#/+#/#g' | \ $sed 's#/+#/#g' | \
$sed 's#/([^\t :/]{1,}/){1,}([^\t :/]{1,})#<...>/\2#g' $sed 's#/([^ :/]{1,}/){1,}([^ :/]{1,})#<...>/\2#g'