From acc5314ed8e916903a1f136ffcbef847ae39fef5 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Fri, 26 Oct 2018 13:21:05 -0700 Subject: Check for duplicate entries in manifests Change-Id: Ibb63db5372d0000670e5c35df5c0c4e3313881ba Issue-ID: INT-586 Signed-off-by: Gary Wu --- version-manifest/src/main/scripts/check-sorted.sh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'version-manifest/src/main/scripts') diff --git a/version-manifest/src/main/scripts/check-sorted.sh b/version-manifest/src/main/scripts/check-sorted.sh index 70ca5ac04..eb41ddef2 100755 --- a/version-manifest/src/main/scripts/check-sorted.sh +++ b/version-manifest/src/main/scripts/check-sorted.sh @@ -7,6 +7,7 @@ if [ "$#" -ne 1 ]; then fi LC_ALL=C sort -c $1 + retval=$? if [ $retval -ne 0 ]; then echo @@ -16,4 +17,12 @@ if [ $retval -ne 0 ]; then echo " mv $1.tmp $1" echo fi + +# check that there are no duplicate records +DUPLICATES=$(rev < $1 | cut -f2- -d, | uniq -d | rev | tr ',' ':') +for DUP in $DUPLICATES; do + echo "[ERROR] $DUP has duplicate entries" + ((retval++)) +done + exit $retval -- cgit 1.2.3-korg