Make weekly build truly weekly again

This was temporarily changed to daily during the 2.4.10 release
timeframe to stomp out some release bugs. That should no longer be
necessary.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22314 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2012-08-15 09:55:20 +00:00
parent d57c931199
commit 18b51f9090

View File

@ -11,7 +11,7 @@
set -e
## Only run this script on Monday night (first day of the week)
#if [ `date +%u` != 1 ] ; then exit ; fi
if [ `date +%u` != 1 ] ; then exit ; fi
function qpushd() { pushd "$@" >/dev/null; }
function qpopd() { popd >/dev/null; }