ci-automation/vendor-testing/qemu_update.sh: fix unbound

One-line fix to resolve
    ci-automation/vendor-testing/qemu_update.sh: line 64: testscript: unbound variable
error.

Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
This commit is contained in:
Thilo Fromm 2022-03-15 17:39:28 +01:00
parent 1ff70fb888
commit 53c90388c0

View File

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