From 4e3deb5a3b797722990425686314c80326a997e3 Mon Sep 17 00:00:00 2001 From: Chelsea Mafrica Date: Wed, 24 Jan 2024 16:45:25 -0800 Subject: [PATCH] tools: Fix path for installing yq in packaging script The lib.sh script uses the right directory but the wrong path for the script that installs yq; fix it. Fixes #9165 Signed-off-by: Chelsea Mafrica --- tools/packaging/scripts/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/scripts/lib.sh b/tools/packaging/scripts/lib.sh index a8f85b63ee..014506c1b0 100644 --- a/tools/packaging/scripts/lib.sh +++ b/tools/packaging/scripts/lib.sh @@ -29,7 +29,7 @@ TARGET_OS=${TARGET_OS:-linux} install_yq() { pushd "${repo_root_dir}" - .ci/install_yq.sh + ./ci/install_yq.sh popd }