Skip to content

Commit

Permalink
Merge branch 'cb/t3404-shellquote' into maint
Browse files Browse the repository at this point in the history
* cb/t3404-shellquote:
  t3404: fix quoting of redirect for some versions of bash
  • Loading branch information
Junio C Hamano committed Dec 11, 2015
2 parents 17e5bca + 7966230 commit 7605881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/t3404-rebase-interactive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" &&
Expand Down

0 comments on commit 7605881

Please sign in to comment.