This commit is contained in:
shocknet-justin 2025-09-25 14:33:38 -04:00
parent f514d9160c
commit 12e58be271

View file

@ -10,7 +10,7 @@
find_available_port() { find_available_port() {
local port=$1 local port=$1
while ! is_port_available "$port"; do while ! is_port_available "$port"; do
log "Port $port is in use. Checking next port..." log "Port $port is in use. Checking next port..." >&2
port=$((port + 1)) port=$((port + 1))
done done
echo "$port" echo "$port"