Date: Thu, 20 Feb 2014 22:41:12 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-svnadmin@freebsd.org Subject: svn commit: r345275 - svnadmin/hooks/scripts Message-ID: <201402202241.s1KMfCLa092897@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Thu Feb 20 22:41:12 2014 New Revision: 345275 URL: http://svnweb.freebsd.org/changeset/ports/345275 QAT: https://qat.redports.org/buildarchive/r345275/ Log: svn hooks need to write to stderr for the message to reach the user. Noticed by: girgen Submitted by: gjb (based on) Sponsored by: Absolight Modified: svnadmin/hooks/scripts/stage-only.sh svnadmin/hooks/scripts/vulnxml-unique.sh Modified: svnadmin/hooks/scripts/stage-only.sh ============================================================================== --- svnadmin/hooks/scripts/stage-only.sh Thu Feb 20 22:40:14 2014 (r345274) +++ svnadmin/hooks/scripts/stage-only.sh Thu Feb 20 22:41:12 2014 (r345275) @@ -18,7 +18,7 @@ for line in $(svnlook changed -t $TXN $R case $fpath in /head/*/*/Makefile*) if svnlook cat -t ${TXN} ${REPO} $fpath | grep -q "^NO_STAGE" ; then - echo "Do not commit new ports with NO_STAGE" + echo "Do not commit new ports with NO_STAGE" 1>&2 exit 1 fi ;; Modified: svnadmin/hooks/scripts/vulnxml-unique.sh ============================================================================== --- svnadmin/hooks/scripts/vulnxml-unique.sh Thu Feb 20 22:40:14 2014 (r345274) +++ svnadmin/hooks/scripts/vulnxml-unique.sh Thu Feb 20 22:41:12 2014 (r345275) @@ -36,7 +36,7 @@ done # yell if [ $VULN_XML -gt 0 -a $OTHER -gt 0 ] ; then - echo "Commit to security/vuxml/vuln.xml first, and then other files" + echo "Commit to security/vuxml/vuln.xml first, and then other files" 1>&2 exit 1 fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402202241.s1KMfCLa092897>