mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 09:50:08 +00:00
8 lines
305 B
Bash
Executable file
8 lines
305 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
[ -e $DOWNLOADS/ks.tar.gz ] || curl -sLf --retry 3 -o $DOWNLOADS/ks.tar.gz https://github.com/ksonnet/ksonnet/releases/download/v0.13.1/ks_0.13.1_linux_amd64.tar.gz
|
|
tar -C /tmp -xf $DOWNLOADS/ks.tar.gz
|
|
cp /tmp/ks_0.13.1_linux_amd64/ks $BIN/ks
|
|
chmod +x $BIN/ks
|
|
ks version
|