„authorize-server.sh“ ändern

This commit is contained in:
Yann Mölle 2023-04-19 19:37:14 +02:00
parent 4b7b1e9213
commit 834a2f3a12

View File

@ -3,7 +3,7 @@
# Read the server list from the specified file # Read the server list from the specified file
SERVER_LIST_FILE="servers.conf" SERVER_LIST_FILE="servers.conf"
SERVER_LIST=() SERVER_LIST=()
while IFS= read -r SERVER || [[ -n "$SERVER" ]]; do while IFS= read -r SERVER || [ -n "$SERVER" ]; do
SERVER_LIST+=("$SERVER") SERVER_LIST+=("$SERVER")
done < "$SERVER_LIST_FILE" done < "$SERVER_LIST_FILE"