From 751ff5036c84ad632a55157a857295a3b40e984e Mon Sep 17 00:00:00 2001 From: Todd Malsbary Date: Fri, 7 Jan 2022 08:26:16 -0800 Subject: [PATCH] Fix unbound variable error Signed-off-by: Todd Malsbary Change-Id: Ib477af32065f2611e6d1b3b0fb0599a45228f27e --- deploy/kata/kata.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/kata/kata.sh b/deploy/kata/kata.sh index 0cc3b86..4601e73 100755 --- a/deploy/kata/kata.sh +++ b/deploy/kata/kata.sh @@ -83,7 +83,7 @@ function test_kata { clone_kud_repository pushd ${KUDPATH}/kud/tests failed_kud_tests="" - KUBECONFIG=${cluster_kubeconfig} bash kata.sh || failed_kud_tests="${failed_kud_tests} ${test}" + KUBECONFIG=${cluster_kubeconfig} bash kata.sh || failed_kud_tests="${failed_kud_tests} kata" popd clean_webhook ${cluster_name} if [[ ! -z "$failed_kud_tests" ]]; then -- 2.16.6