t: local VAR="VAL" (quote command substitution)

Future-proof test scripts that do

	local VAR=VAL

without quoting VAL (which is OK in POSIX but broken in some shells)
that is a $(command substitution).

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano
2024-04-05 17:09:00 -07:00
parent 341aad8d41
commit 7f9f230b7f
2 changed files with 3 additions and 3 deletions

View File

@ -1840,7 +1840,7 @@ test_subcommand () {
shift
fi
local expr=$(printf '"%s",' "$@")
local expr="$(printf '"%s",' "$@")"
expr="${expr%,}"
if test -n "$negate"