From 53c90388c0abdec8851a923473f1b9176b52efef Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Tue, 15 Mar 2022 17:39:28 +0100 Subject: [PATCH] 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 --- ci-automation/vendor-testing/qemu_update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-automation/vendor-testing/qemu_update.sh b/ci-automation/vendor-testing/qemu_update.sh index 3ee04350d8..c8276cc875 100755 --- a/ci-automation/vendor-testing/qemu_update.sh +++ b/ci-automation/vendor-testing/qemu_update.sh @@ -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