From 6f00abc963f34b7650ad158a9966545096966ebe Mon Sep 17 00:00:00 2001 From: Philipp Defner Date: Mon, 23 Mar 2026 12:09:25 +0100 Subject: [PATCH] Fix bug on iteration This fixes an issue where we throw a "SSH tunnel at index 0 is missing name" error if there's no ssh tunnel config, but only sql tunnels. --- config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.sh b/config.sh index 747c2af..20a991c 100644 --- a/config.sh +++ b/config.sh @@ -52,7 +52,7 @@ TUNNEL_LABELS=() TUNNEL_INSTANCES=() TUNNEL_PORTS=() -for i in $(seq 0 $((tunnel_count - 1))); do +for ((i=0; i