Automated Manifest Update #2750

Merged
alexlebens merged 1 commits from auto/update-manifests into manifests 2025-12-20 05:40:36 +00:00
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;