Skip to content

Commit

Permalink
Update get-helm-3
Browse files Browse the repository at this point in the history
add quite switch to prevent output  like progress information in downloaded data

Signed-off-by: Marcel Humburg <Marcel.Humburg@protonmail.ch>
  • Loading branch information
MarHum26 committed Oct 23, 2023
1 parent 1338ffe commit 81362d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/get-helm-3
Expand Up @@ -113,7 +113,7 @@ checkDesiredVersion() {
if [ "${HAS_CURL}" == "true" ]; then
latest_release_response=$( curl -L --silent --show-error --fail "$latest_release_url" 2>&1 || true )
elif [ "${HAS_WGET}" == "true" ]; then
latest_release_response=$( wget "$latest_release_url" -O - 2>&1 || true )
latest_release_response=$( wget "$latest_release_url" -q -O - 2>&1 || true )
fi
TAG=$( echo "$latest_release_response" | grep '^v[0-9]' )
if [ "x$TAG" == "x" ]; then
Expand Down

0 comments on commit 81362d9

Please sign in to comment.