[PATCH] t/t7003: replace \t with literal tab in sed expression
From: Brandon Casey <hidden>
Date: 2016-06-15 22:49:18
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Brandon Casey <hidden>
Date: 2016-06-15 22:49:18
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Brandon Casey <redacted> The sed utilities on IRIX and Solaris do not interpret the sequence '\t' to mean a tab character; they read a literal character 't'. So, use a literal tab instead. Signed-off-by: Brandon Casey <redacted> --- t/t7003-filter-branch.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/t/t7003-filter-branch.sh b/t/t7003-filter-branch.sh
index fd7e3a1..2c55801 100755
--- a/t/t7003-filter-branch.sh
+++ b/t/t7003-filter-branch.sh@@ -143,7 +143,7 @@ test_expect_success 'more setup' ' test_expect_success 'use index-filter to move into a subdirectory' ' git branch directorymoved && git filter-branch -f --index-filter \ - "git ls-files -s | sed \"s-\\t-&newsubdir/-\" | + "git ls-files -s | sed \"s- -&newsubdir/-\" | GIT_INDEX_FILE=\$GIT_INDEX_FILE.new \ git update-index --index-info && mv \"\$GIT_INDEX_FILE.new\" \"\$GIT_INDEX_FILE\"" directorymoved &&
--
1.7.2.1