summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-12-11 10:40:57 -0800
committerJunio C Hamano <gitster@pobox.com>2015-12-11 10:40:58 -0800
commitc87eec9784c3029263ce0a7103ca4b2e59dc1b68 (patch)
treece90cfc4bf52c106e45408509d9a1f379b55d76b
parente0048d3e0d95dca049423b17b97e27fef1d0da5a (diff)
parent7966230b7d5baaa7f889446bc2173f899c4d65e0 (diff)
downloadgit-c87eec9784c3029263ce0a7103ca4b2e59dc1b68.tar.gz
Merge branch 'cb/t3404-shellquote'
* cb/t3404-shellquote: t3404: fix quoting of redirect for some versions of bash
-rwxr-xr-xt/t3404-rebase-interactive.sh2
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" &&