From 2fd37d0489f3d8c16e78e5ecb4c6697c8b025d6e Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 9 May 2024 21:39:40 +0100 Subject: [PATCH] fix: don't double quote while hunting for OVMF. close #1181 --- quickemu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickemu b/quickemu index f626fa6cfc..39009f33bb 100755 --- a/quickemu +++ b/quickemu @@ -419,7 +419,8 @@ function vm_boot() { _IFS=$IFS IFS="," for f in "${ovmfs[@]}"; do - set -- "${f}"; + # shellcheck disable=SC2086 + set -- ${f}; if [ -e "${1}" ]; then EFI_CODE="${1}" EFI_EXTRA_VARS="${2}"