chore: Update manifests after change

This commit is contained in:
2025-12-20 06:15:32 +00:00
parent 2b3ac8a03d
commit 311ba411fe
3 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