From 9400af6b301274f4bb1562ac736397b189bc05ba Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Wed, 21 Jul 2021 16:15:34 +0300 Subject: [PATCH] [Ubuntu] Install yq to /usr/bin (#3768) * Installation to /usr/local/bin break some workflows --- images/linux/scripts/installers/yq.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/installers/yq.sh b/images/linux/scripts/installers/yq.sh index 7f3e3b447..ae633dae8 100644 --- a/images/linux/scripts/installers/yq.sh +++ b/images/linux/scripts/installers/yq.sh @@ -11,6 +11,6 @@ echo "Downloading latest yq from $YQ_URL" download_with_retries "$YQ_URL" "/tmp" "${YQ_BINARY}.tar.gz" tar xzf "/tmp/${YQ_BINARY}.tar.gz" -C "/tmp" -mv /tmp/${YQ_BINARY} /usr/local/bin/yq +mv /tmp/${YQ_BINARY} /usr/bin/yq invoke_tests "Tools" "yq"