Skip to content

Commit

Permalink
fix: don't double quote while hunting for OVMF. close quickemu-projec…
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed May 9, 2024
1 parent 9b8ff34 commit 2fd37d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 2fd37d0

Please sign in to comment.