[Ubuntu] Install yq to /usr/bin (#3768)

* Installation to /usr/local/bin break some workflows
This commit is contained in:
Mikhail Timofeev
2021-07-21 16:15:34 +03:00
committed by GitHub
parent 09920886d1
commit 9400af6b30

View File

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