From b780ec2a2f6c9b5c5398a48e99e8183507bb512b Mon Sep 17 00:00:00 2001 From: erwin Date: Fri, 19 Oct 2012 14:49:25 +0000 Subject: Sync with the version that's currently running on pointyhat: - be less verbose to be more friendly to running from cron - I've been running this script for several years now, not Kris - Send me a copy of the output for debugging Feature safe: yes --- Tools/scripts/check-latest-link | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Tools') diff --git a/Tools/scripts/check-latest-link b/Tools/scripts/check-latest-link index b72141e926af..84ebc358aca2 100644 --- a/Tools/scripts/check-latest-link +++ b/Tools/scripts/check-latest-link @@ -25,7 +25,6 @@ CATEGORIES=$(make -V SUBDIR) for cat in ${CATEGORIES}; do cd ${PORTSDIR}/${cat} dirs=$(make -V SUBDIR) - echo "==> ${cat}" 1>&2 make "PORTSDIR=${PORTSDIR}" "CATEGORY=${cat}" "DIRS=${dirs}" -k -j3 -f - << "EOF" all: ${DIRS:S/$/.portinfo/} @@ -55,7 +54,9 @@ maint=$(awk '{print $2}' < .latest_full | sort -ui | tr '\n' ',') echo echo echo "Thanks," - echo "Kris \"Annoying Reminder Guy II\" Kennaway" + echo "Erwin \"Annoying Reminder Guy III\" Lansing" + echo + echo printf "%-20s %-30s %-20s\n" "LATEST_LINK" "PORTNAME" "MAINTAINER" echo "==========================================================================" @@ -71,6 +72,8 @@ if [ "${NOMAIL}" = "0" ]; then for i in ${maint}; do mail -s "Ports with duplicate LATEST_LINKs" $i < .latest_mail done + # Copy to erwin@ + mail -s "Ports with duplicate LATEST_LINKs" erwin@FreeBSD.org < .latest_mail else cat .latest_mail fi -- cgit