Files
runner-images/images/linux/scripts/installers/yq.sh
T

11 lines
273 B
Bash
Raw Normal View History

2021-07-15 11:21:48 +02:00
#!/bin/bash -e
# Source the helpers for use with the script
source $HELPER_SCRIPTS/install.sh
YQ_URL="https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64"
download_with_retries "$YQ_URL" "/usr/bin" "yq"
chmod +x /usr/bin/yq
2021-07-15 11:21:48 +02:00
invoke_tests "Tools" "yq"