Merge pull request #256 from flatcar-linux/t-lo/ci-automation-fix-update-test

ci-automation/vendor-testing/qemu_update.sh: fix unbound variable
This commit is contained in:
Thilo Fromm 2022-03-15 17:53:58 +01:00 committed by GitHub
commit aaf17af27d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,9 +59,9 @@ bios="${QEMU_BIOS}"
if [ "${arch}" = "arm64" ]; then
bios="${QEMU_UEFI_BIOS}"
if [ -f "${bios}" ] ; then
echo "++++ ${testscript}: Using existing ${work_dir}/${bios} ++++"
echo "++++ qemu_update.sh: Using existing ${work_dir}/${bios} ++++"
else
echo "++++ ${testscript}: downloading ${bios} for ${vernum} (${arch}) ++++"
echo "++++ qemu_update.sh: downloading ${bios} for ${vernum} (${arch}) ++++"
copy_from_buildcache "images/${arch}/${vernum}/${bios}" .
fi
fi