We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 253b61c commit 3e0617bCopy full SHA for 3e0617b
hack/e2e/helm.sh
@@ -4,12 +4,18 @@ set -uo pipefail
4
5
function helm_install() {
6
INSTALL_PATH=${1}
7
+
8
if [[ ! -e ${INSTALL_PATH}/helm ]]; then
9
+ mkdir -p ${INSTALL_PATH}
10
+ pushd ${INSTALL_PATH} > /dev/null || return 1
11
12
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
13
chmod 700 get_helm.sh
14
export USE_SUDO=false
15
export HELM_INSTALL_DIR=${INSTALL_PATH}
16
./get_helm.sh
17
rm get_helm.sh
18
19
+ popd > /dev/null
20
fi
21
}
0 commit comments