1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

tests: correcting usage of $@

Use "$@" (with quotes) to prevent whitespace problems.
This commit is contained in:
Zdenek Kabelac 2017-07-07 13:45:04 +02:00
parent f161c6ee9f
commit 91d6a62fc5

View File

@ -25,7 +25,7 @@ check_lv_field_modules_()
mod=$1
shift
for d in $*; do
for d in "$@"; do
check lv_field $vg/$d modules $mod
done
}