From 30ff9c062a5dd58a1355f9f800bc34e5c2dac088 Mon Sep 17 00:00:00 2001 From: alexlianides <114772744+alexlianides@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:01:29 -0700 Subject: [PATCH] fix differeing architecture helm install (#110) Co-authored-by: alianides --- modules/m_30_app_prereqs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/m_30_app_prereqs.sh b/modules/m_30_app_prereqs.sh index d00a9f5..2bbd061 100755 --- a/modules/m_30_app_prereqs.sh +++ b/modules/m_30_app_prereqs.sh @@ -228,7 +228,7 @@ function _app_install_for_helm(){ echo "...app '${app_name}' not found at '${source}'. Starting download from '${url}' to '${destination}'..." run_a_script "curl --silent --fail --create-dirs --output ${_helm_install_temp_dir}/helm-${VER_HELM}-linux-${HOST_ARCHITECTURE}.tar.gz -L ${url}" --disable_log - run_a_script "tar -xf '${_helm_install_temp_dir}/helm-${VER_HELM}-linux-${HOST_ARCHITECTURE}.tar.gz' --directory '${_helm_install_temp_dir}' linux-${ARCHITECTURE}/helm" --disable_log + run_a_script "tar -xf '${_helm_install_temp_dir}/helm-${VER_HELM}-linux-${HOST_ARCHITECTURE}.tar.gz' --directory '${_helm_install_temp_dir}' linux-${HOST_ARCHITECTURE}/helm" --disable_log run_a_script "mv ${_helm_install_temp_dir}/linux-${HOST_ARCHITECTURE}/helm ${destination}" --disable_log run_a_script "rm ${_helm_install_temp_dir} -rf" --disable_log fi