From caa23e6f1c62ab468ccff72ab1bcec7f453ed46d Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sat, 3 Jan 2026 07:39:45 -0300 Subject: [PATCH] fix(nextcloud-mail-sync): fix bash syntax --- scripts/nextcloud-mail-sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nextcloud-mail-sync.sh b/scripts/nextcloud-mail-sync.sh index 2efe58a..dd606d9 100755 --- a/scripts/nextcloud-mail-sync.sh +++ b/scripts/nextcloud-mail-sync.sh @@ -33,7 +33,7 @@ list_mail_accounts() { next; } id != "" && /@/ { - # Keep the regex simple (mawk doesn't support interval expressions like {2,}). + # Keep the regex simple (mawk does not support interval expressions like {2,}). if (match($0, /[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+/)) { printf("%s\t%s\n", id, substr($0, RSTART, RLENGTH)); id="";