From 918334e41356df5a5171fa02e58e4c17c57051a3 Mon Sep 17 00:00:00 2001 From: Christoph Kuchenbuch Date: Tue, 13 Apr 2021 10:04:23 +0200 Subject: [PATCH] create_sympa_listdomain.sh: fix code error - missing 'done'. --- create_sympa_listdomain.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/create_sympa_listdomain.sh b/create_sympa_listdomain.sh index d0d2b67..d41b62e 100755 --- a/create_sympa_listdomain.sh +++ b/create_sympa_listdomain.sh @@ -405,6 +405,7 @@ for _listmaster in "${listmaster_arr[@]}" ; do else SYMPA_LISTMASTER="${SYMPA_LISTMASTER},$_listmaster" fi +done SYMPA_LISTMASTER="$(echo $SYMPA_LISTMASTER | sed 's/\(.\)\1*/\1/g')" # Remove trailling ',' SYMPA_LISTMASTER="${SYMPA_LISTMASTER%,}"