fix: don't double quote while hunting for OVMF. close #1181
This commit is contained in:
parent
9b8ff34e81
commit
2fd37d0489
3
quickemu
3
quickemu
|
@ -419,7 +419,8 @@ function vm_boot() {
|
||||||
_IFS=$IFS
|
_IFS=$IFS
|
||||||
IFS=","
|
IFS=","
|
||||||
for f in "${ovmfs[@]}"; do
|
for f in "${ovmfs[@]}"; do
|
||||||
set -- "${f}";
|
# shellcheck disable=SC2086
|
||||||
|
set -- ${f};
|
||||||
if [ -e "${1}" ]; then
|
if [ -e "${1}" ]; then
|
||||||
EFI_CODE="${1}"
|
EFI_CODE="${1}"
|
||||||
EFI_EXTRA_VARS="${2}"
|
EFI_EXTRA_VARS="${2}"
|
||||||
|
|
Loading…
Reference in New Issue