t/t5100: no need to use 'echo' command substitutions for globbing
Instead of making the shell expand 00* and invoke 'echo' with it, and then capturing its output as command substitution, just use the result of expanding 00* directly. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
20cffb7235
commit
6ffd3ec88c
|
@ -23,7 +23,7 @@ check_mailinfo () {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
for mail in $(echo 00*)
|
for mail in 00*
|
||||||
do
|
do
|
||||||
test_expect_success "mailinfo $mail" '
|
test_expect_success "mailinfo $mail" '
|
||||||
check_mailinfo $mail "" &&
|
check_mailinfo $mail "" &&
|
||||||
|
@ -51,7 +51,7 @@ test_expect_success 'split box with rfc2047 samples' \
|
||||||
echo total is $last &&
|
echo total is $last &&
|
||||||
test $(cat rfc2047/last) = 11'
|
test $(cat rfc2047/last) = 11'
|
||||||
|
|
||||||
for mail in $(echo rfc2047/00*)
|
for mail in rfc2047/00*
|
||||||
do
|
do
|
||||||
test_expect_success "mailinfo $mail" '
|
test_expect_success "mailinfo $mail" '
|
||||||
git mailinfo -u $mail-msg $mail-patch <$mail >$mail-info &&
|
git mailinfo -u $mail-msg $mail-patch <$mail >$mail-info &&
|
||||||
|
|
Loading…
Reference in New Issue