From 834a2f3a123c7d868c3401f654e801be1bc62468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=B6lle?= Date: Wed, 19 Apr 2023 19:37:14 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Eauthorize-server.sh=E2=80=9C=20=C3=A4n?= =?UTF-8?q?dern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- authorize-server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorize-server.sh b/authorize-server.sh index 0635495..567ee3a 100644 --- a/authorize-server.sh +++ b/authorize-server.sh @@ -3,7 +3,7 @@ # Read the server list from the specified file SERVER_LIST_FILE="servers.conf" SERVER_LIST=() -while IFS= read -r SERVER || [[ -n "$SERVER" ]]; do +while IFS= read -r SERVER || [ -n "$SERVER" ]; do SERVER_LIST+=("$SERVER") done < "$SERVER_LIST_FILE"