fix
All checks were successful
lint-test-helm / lint-helm (push) Successful in 8s
render-manifests-push / render-manifests-push (push) Successful in 35s
renovate / renovate (push) Successful in 56s

This commit is contained in:
2025-12-19 23:39:27 -06:00
parent fdd5ee823f
commit ea61717174
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ data:
SUCCESS=false
for i in $(seq 1 "$MAX_RETRIES"); do
if apk update --short &> /dev/null; then
if apk update --short > /dev/null 2>&1; then
echo ">> Attempt $i: Repositories are reachable"
SUCCESS=true
break

View File

@@ -13,7 +13,7 @@ data:
SUCCESS=false
for i in $(seq 1 "$MAX_RETRIES"); do
if apk update --short &> /dev/null; then
if apk update --short > /dev/null 2>&1; then
echo ">> Attempt $i: Repositories are reachable";
SUCCESS=true;
break;