Skip to content

Commit 489beb0

Browse files
committed
Fix VNC port readiness check to correctly increment the count of ready ports
1 parent aa2dc46 commit 489beb0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test-dynamic-method.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ jobs:
119119
if netstat -tuln | grep -q ":$port "; then
120120
echo "✅ VNC port $port is listening"
121121
port_ready=true
122-
((vnc_ports_ok++))
122+
vnc_ports_ok=$((vnc_ports_ok + 1))
123+
123124
break
124125
else
125126
echo "⏳ VNC port $port not ready yet, waiting..."

0 commit comments

Comments
 (0)