🗃️ Update codebase 🗃️
All checks were successful
release-tag / release-image (push) Successful in 7m50s

rootfs/usr/local/etc/docker/init.d/08-gitea.sh
rootfs/usr/local/etc/docker/init.d/zz-act_runner.sh
This commit is contained in:
casjay
2025-11-29 15:21:51 -05:00
parent 265f823955
commit a46ba76ca9
2 changed files with 2 additions and 3 deletions

View File

@@ -263,8 +263,7 @@ __execute_prerun() {
local status=0
# Define actions/commands
while [ $count -lt $max ]; do
echo "Waiting for gitea to start"
status=$(curl -q -LSsf -o /dev/null -w '%{http_code}' --max-time 5 http://localhost)
status=$(curl -q -LSsf -o /dev/null -w '%{http_code}' --max-time 5 http://localhost 2>/dev/null)
if [ "$status" = "200" ]; then
break
else