tools.kata-webhook: Fix lib path

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 <ldoktor@redhat.com>
This commit is contained in:
Lukáš Doktor 2024-02-05 14:04:37 +01:00
parent 1362918ff0
commit 3b0049b2a4
No known key found for this signature in database
GPG Key ID: 26B362E47FCF22C1

View File

@ -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"