mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
t3404: fix quoting of redirect for some versions of bash
As CodingGuidelines says, some versions of bash errors out when $variable substitution is used as the target for redirection without being quoted (even though POSIX may not require such a quote). Signed-off-by: Charles Bailey <cbailey32@bloomberg.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
1db168ee97
commit
7966230b7d
1 changed files with 1 additions and 1 deletions
|
@ -1213,7 +1213,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" &&
|
||||
|
|
Loading…
Reference in a new issue