mirror of
https://github.com/git/git
synced 2024-11-05 01:58:18 +00:00
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:
parent
341aad8d41
commit
7f9f230b7f
2 changed files with 3 additions and 3 deletions
|
@ -13,13 +13,13 @@ TEST_PASSES_SANITIZE_LEAK=true
|
|||
|
||||
# Print the short OID of a symlink with the given name.
|
||||
symlink_oid () {
|
||||
local oid=$(printf "%s" "$1" | git hash-object --stdin) &&
|
||||
local oid="$(printf "%s" "$1" | git hash-object --stdin)" &&
|
||||
git rev-parse --short "$oid"
|
||||
}
|
||||
|
||||
# Print the short OID of the given file.
|
||||
short_oid () {
|
||||
local oid=$(git hash-object "$1") &&
|
||||
local oid="$(git hash-object "$1")" &&
|
||||
git rev-parse --short "$oid"
|
||||
}
|
||||
|
||||
|
|
|
@ -1840,7 +1840,7 @@ test_subcommand () {
|
|||
shift
|
||||
fi
|
||||
|
||||
local expr=$(printf '"%s",' "$@")
|
||||
local expr="$(printf '"%s",' "$@")"
|
||||
expr="${expr%,}"
|
||||
|
||||
if test -n "$negate"
|
||||
|
|
Loading…
Reference in a new issue