1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 01:55:10 +03:00

vgimportclone.sh: no mixing string and array

Argument mixes string and array. Use * or separate argument.
This commit is contained in:
Zdenek Kabelac 2017-06-28 19:40:34 +02:00
parent 4d34bc65dd
commit 96a2e00240

View File

@ -29,7 +29,7 @@ LVM="${LVM_BINARY:-lvm}"
die() {
code=$1; shift
echo "Fatal: $@" 1>&2
echo "Fatal:" "$@" 1>&2
exit $code
}