From 3b0049b2a491bb670ab1477cacbcd8511e3f9719 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Mon, 5 Feb 2024 14:04:37 +0100 Subject: [PATCH] tools.kata-webhook: Fix lib path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When moving the webhook we skipped the common.bash as (close-enough) version is already in `/tests` but we forgot to update the source path, fixing it here. Fixes: #8653 Signed-off-by: Lukáš Doktor --- tools/testing/kata-webhook/webhook-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/kata-webhook/webhook-check.sh b/tools/testing/kata-webhook/webhook-check.sh index 2341442ff1..f13177a423 100755 --- a/tools/testing/kata-webhook/webhook-check.sh +++ b/tools/testing/kata-webhook/webhook-check.sh @@ -11,7 +11,7 @@ set -o nounset set -o pipefail webhook_dir=$(dirname $0) -source "${webhook_dir}/../lib/common.bash" +source "${webhook_dir}/../../../tests/common.bash" source "${webhook_dir}/common.bash" readonly hello_pod="hello-kata-webhook"