Skip to content

Commit 7605881

Browse files
committed
Merge branch 'cb/t3404-shellquote' into maint
* cb/t3404-shellquote: t3404: fix quoting of redirect for some versions of bash
2 parents 17e5bca + 7966230 commit 7605881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t3404-rebase-interactive.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ test_expect_success 'tabs and spaces are accepted in the todolist' '
12341234
# Turn single spaces into space/tab mix
12351235
sed "1s/ / /g; 2s/ / /g; 3s/ / /g" "$1"
12361236
printf "\n\t# comment\n #more\n\t # comment\n"
1237-
) >$1.new
1237+
) >"$1.new"
12381238
mv "$1.new" "$1"
12391239
EOF
12401240
test_set_editor "$(pwd)/add-indent.sh" &&

0 commit comments

Comments
 (0)