From 7040e30431cb377d4eadddbcd20a9b17be307d61 Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Mon, 30 Nov 2020 13:53:38 +0000 Subject: [PATCH] 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. --- testing/scripts/diff-remove-abspath | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/scripts/diff-remove-abspath b/testing/scripts/diff-remove-abspath index 0d84aafd7e..14d5fca052 100755 --- a/testing/scripts/diff-remove-abspath +++ b/testing/scripts/diff-remove-abspath @@ -9,4 +9,4 @@ else fi $sed 's#/+#/#g' | \ -$sed 's#/([^\t :/]{1,}/){1,}([^\t :/]{1,})#<...>/\2#g' +$sed 's#/([^ :/]{1,}/){1,}([^ :/]{1,})#<...>/\2#g'