r23306 - meta/hooks - Stop calling out to the old github pusher

Derek Atkins warlord at code.gnucash.org
Mon Oct 21 11:35:57 EDT 2013


Author: warlord
Date: 2013-10-21 11:35:57 -0400 (Mon, 21 Oct 2013)
New Revision: 23306
Trac: http://svn.gnucash.org/trac/changeset/23306

Modified:
   meta/hooks/post-commit
Log:
Stop calling out to the old github pusher


Modified: meta/hooks/post-commit
===================================================================
--- meta/hooks/post-commit	2013-10-20 03:41:17 UTC (rev 23305)
+++ meta/hooks/post-commit	2013-10-21 15:35:57 UTC (rev 23306)
@@ -82,15 +82,16 @@
 #   note:  only one should tickle, so once we find one that matches, that's
 #          it.  This means "gnucash-docs" should be before "gnucash", otherwise
 #          the shorter name would match first. -- warlord
+# 2013-10-21: don't call out to "update-github" anymore.  Just touch the trigger
 if [ `${SVNLOOK} changed "${REPOS}" -r "${REV}" | ${EGREP} -c "^....htdocs"` != 0 ] ; then
     touch "${REPOS}"/tmp/trigger
-    "${REPOS}"/hooks/update-github gnucash-htdocs
+    #"${REPOS}"/hooks/update-github gnucash-htdocs
 elif [ `${SVNLOOK} changed "${REPOS}" -r "${REV}" | ${EGREP} -c "^....gnucash-docs"` != 0 ] ; then
     touch "${REPOS}"/tmp/trigger
-    "${REPOS}"/hooks/update-github gnucash-docs
+    #"${REPOS}"/hooks/update-github gnucash-docs
 elif [ `${SVNLOOK} changed "${REPOS}" -r "${REV}" | ${EGREP} -c "^....gnucash"` != 0 ] ; then
     touch "${REPOS}"/tmp/trigger
-    "${REPOS}"/hooks/update-github gnucash
+    #"${REPOS}"/hooks/update-github gnucash
 fi
 
 # 2006-07-14 warlord: check the log looking for backport requests



More information about the gnucash-changes mailing list