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 <chelsea.e.mafrica@intel.com>
This commit is contained in:
Chelsea Mafrica 2024-01-24 16:45:25 -08:00
parent cfb977625e
commit 4e3deb5a3b

View File

@ -29,7 +29,7 @@ TARGET_OS=${TARGET_OS:-linux}
install_yq() {
pushd "${repo_root_dir}"
.ci/install_yq.sh
./ci/install_yq.sh
popd
}