From 06d2aabaa2747b1fc6a45e5b7779691695a9b703 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Tue, 11 Oct 2022 15:25:56 +0200 Subject: [PATCH] ci-automation/vendor-testing/vmware.sh: Fix unbound variable use This gets triggered when the test is rerun and an existing image is reused. --- ci-automation/vendor-testing/vmware.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-automation/vendor-testing/vmware.sh b/ci-automation/vendor-testing/vmware.sh index c0c57a6c30..399fbfc897 100755 --- a/ci-automation/vendor-testing/vmware.sh +++ b/ci-automation/vendor-testing/vmware.sh @@ -24,7 +24,7 @@ fi # Fetch image if not present. if [ -f "${VMWARE_ESX_IMAGE_NAME}" ] ; then - echo "++++ ${CIA_TESTSCRIPT}: Using existing ${work_dir}/${VMWARE_ESX_IMAGE_NAME} for testing ${CIA_VERNUM} (${CIA_ARCH}) ++++" + echo "++++ ${CIA_TESTSCRIPT}: Using existing ${VMWARE_ESX_IMAGE_NAME} for testing ${CIA_VERNUM} (${CIA_ARCH}) ++++" else echo "++++ ${CIA_TESTSCRIPT}: downloading ${VMWARE_ESX_IMAGE_NAME} for ${CIA_VERNUM} (${CIA_ARCH}) ++++" copy_from_buildcache "images/${CIA_ARCH}/${CIA_VERNUM}/${VMWARE_ESX_IMAGE_NAME}" .