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

8 lines
230 B
Bash
Raw Normal View History

2019-10-15 16:15:33 +00:00
#!/bin/bash
set -eux -o pipefail
[ -e $DOWNLOADS/dep ] || curl -sLf --retry 3 -o $DOWNLOADS/dep https://github.com/golang/dep/releases/download/v0.5.3/dep-linux-$ARCHITECTURE
2019-10-15 16:15:33 +00:00
cp $DOWNLOADS/dep $BIN/
chmod +x $BIN/dep
dep version