diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-12-11 10:40:57 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-11 10:40:58 -0800 |
commit | c87eec9784c3029263ce0a7103ca4b2e59dc1b68 (patch) | |
tree | ce90cfc4bf52c106e45408509d9a1f379b55d76b /t/t3404-rebase-interactive.sh | |
parent | Merge branch 'sg/lock-file-commit-error' (diff) | |
parent | t3404: fix quoting of redirect for some versions of bash (diff) | |
download | tgif-c87eec9784c3029263ce0a7103ca4b2e59dc1b68.tar.xz |
Merge branch 'cb/t3404-shellquote'
* cb/t3404-shellquote:
t3404: fix quoting of redirect for some versions of bash
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-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" && |