mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
12 lines
496 B
Bash
Executable file
12 lines
496 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
. $(dirname $0)/../tool-versions.sh
|
|
|
|
export TARGET_FILE=helm-v${helm2_version}-linux-${ARCHITECTURE}.tar.gz
|
|
|
|
[ -e ${DOWNLOADS}/${TARGET_FILE} ] || curl -sLf --retry 3 -o ${DOWNLOADS}/${TARGET_FILE} https://get.helm.sh/helm-v${helm2_version}-linux-$ARCHITECTURE.tar.gz
|
|
$(dirname $0)/compare-chksum.sh
|
|
mkdir -p /tmp/helm2 && tar -C /tmp/helm2 -xf $DOWNLOADS/${TARGET_FILE}
|
|
sudo install -m 0755 /tmp/helm2/linux-$ARCHITECTURE/helm $BIN/helm2
|
|
helm2 version --client
|