summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-12-11 18:40:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-12-11 18:40:58 (GMT)
commitc87eec9784c3029263ce0a7103ca4b2e59dc1b68 (patch)
treece90cfc4bf52c106e45408509d9a1f379b55d76b /t
parente0048d3e0d95dca049423b17b97e27fef1d0da5a (diff)
parent7966230b7d5baaa7f889446bc2173f899c4d65e0 (diff)
downloadgit-c87eec9784c3029263ce0a7103ca4b2e59dc1b68.zip
git-c87eec9784c3029263ce0a7103ca4b2e59dc1b68.tar.gz
git-c87eec9784c3029263ce0a7103ca4b2e59dc1b68.tar.bz2
Merge branch 'cb/t3404-shellquote'
* cb/t3404-shellquote: t3404: fix quoting of redirect for some versions of bash
Diffstat (limited to 't')
-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 98eb49a..9067e02 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" &&