argo-cd/hack/installers/install-jq-linux.sh

9 lines
263 B
Bash
Raw Normal View History

2019-10-11 20:42:02 +00:00
#!/bin/bash
set -eux -o pipefail
. $(dirname $0)/../tool-versions.sh
[ -e $DOWNLOADS/jq ] || curl -sLf --retry 3 -o $DOWNLOADS/jq https://github.com/stedolan/jq/releases/download/jq-${jq_version}/jq-linux64
2019-10-11 20:42:02 +00:00
cp $DOWNLOADS/jq $BIN/jq
chmod +x $BIN/jq
jq --version