From: Mark Polesky Date: Mon, 23 Jun 2014 10:07:21 +0000 (-0700) Subject: make-countdown-script.sh: comm command requires sorted input. X-Git-Tag: release/2.19.9-1~11 X-Git-Url: https://git.donarmstrong.com/?p=lilypond.git;a=commitdiff_plain;h=10845c628c111c6afcf4eb39c3960ee552b95ab9 make-countdown-script.sh: comm command requires sorted input. --- diff --git a/scripts/auxiliar/make-countdown-announcement.sh b/scripts/auxiliar/make-countdown-announcement.sh index 757f5de6f6..fe1747f731 100755 --- a/scripts/auxiliar/make-countdown-announcement.sh +++ b/scripts/auxiliar/make-countdown-announcement.sh @@ -173,7 +173,7 @@ KNOWN_EMAILS=` IFS=$'\n' for i in $MAILMAP; do echo "$i" | sed 's/^"\(.*\)",".*/\1/' -done` +done | sort --unique` UNKNOWN_EMAILS=`comm -23 <(echo "$EMAILS_USED") <(echo "$KNOWN_EMAILS")`