fix
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user