mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
7 lines
No EOL
216 B
Bash
Executable file
7 lines
No EOL
216 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
[ -e $DOWNLOADS/jq ] || curl -sLf --retry 3 -o $DOWNLOADS/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
|
|
cp $DOWNLOADS/jq $BIN/jq
|
|
chmod +x $BIN/jq
|
|
jq --version |