From 1af97d01fe2bb5be8f4fed370278d9ae34e8742d Mon Sep 17 00:00:00 2001 From: Andrew Baumbach Date: Wed, 6 Aug 2025 13:17:45 -0400 Subject: [PATCH] fix: unbound variable bug --- install/twingate-connector-install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/twingate-connector-install.sh b/install/twingate-connector-install.sh index 9f114c70..a3d95be0 100644 --- a/install/twingate-connector-install.sh +++ b/install/twingate-connector-install.sh @@ -15,6 +15,10 @@ update_os install -d -m 0700 /etc/twingate +access_token="" +refresh_token="" +network="" + while [[ -z "$access_token" ]]; do read -rp "${TAB3}Please enter your access token: " access_token done