mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
7 lines
230 B
Bash
Executable file
7 lines
230 B
Bash
Executable file
#!/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
|
|
cp $DOWNLOADS/dep $BIN/
|
|
chmod +x $BIN/dep
|
|
dep version
|