diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-12-11 11:14:18 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-11 11:14:18 -0800 |
commit | 76058817e80725a2fd1f4935289f663b7aefc024 (patch) | |
tree | b70db431ef8514ef94b5f2e5e3dbdf697007f9bc | |
parent | 17e5bcab715339a24b573ebc28349b9a9a3df0b8 (diff) | |
parent | 7966230b7d5baaa7f889446bc2173f899c4d65e0 (diff) | |
download | git-76058817e80725a2fd1f4935289f663b7aefc024.tar.gz |
Merge branch 'cb/t3404-shellquote' into maint
* cb/t3404-shellquote:
t3404: fix quoting of redirect for some versions of bash
-rwxr-xr-x | t/t3404-rebase-interactive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index 98eb49ac23..9067e0206f 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1234,7 +1234,7 @@ test_expect_success 'tabs and spaces are accepted in the todolist' ' # Turn single spaces into space/tab mix sed "1s/ / /g; 2s/ / /g; 3s/ / /g" "$1" printf "\n\t# comment\n #more\n\t # comment\n" - ) >$1.new + ) >"$1.new" mv "$1.new" "$1" EOF test_set_editor "$(pwd)/add-indent.sh" && |