update script
All checks were successful
lint-test-helm / lint-helm (push) Successful in 15s
render-manifests-push / render-manifests-push (push) Successful in 44s
renovate / renovate (push) Successful in 1m7s

This commit is contained in:
2025-12-20 00:15:02 -06:00
parent 388e864664
commit 87d20e32e2
2 changed files with 50 additions and 14 deletions

View File

@@ -30,8 +30,8 @@ data:
fi
if ! command -v curl 2>&1 >/dev/null; then
echo "curl could not be found, installing";
apk add --no-cache curl;
echo ">> Command curl could not be found, installing";
apk add --no-cache -q curl;
if [ $? -eq 0 ]; then
echo ">> Installation successful"
else
@@ -42,7 +42,7 @@ data:
if ! command -v jq 2>&1 >/dev/null; then
echo "jq could not be found, installing";
apk add --no-cache jq;
apk add --no-cache -q jq;
if [ $? -eq 0 ]; then
echo ">> Installation successful"
else