Fix deploy remote script CRLF issues on Windows PowerShell.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+1
-1
@@ -107,7 +107,7 @@ docker compose up -d --build --remove-orphans
|
||||
info "Waiting for health check ($HEALTH_URL)…"
|
||||
ok=0
|
||||
for ((i = 1; i <= HEALTH_RETRIES; i++)); do
|
||||
if curl -fsS -o /dev/null "$HEALTH_URL"; then
|
||||
if curl -fsS -o /dev/null "$HEALTH_URL" 2>/dev/null; then
|
||||
ok=1
|
||||
break
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user