From 24960e12a61a36430618b7aa86ffb84d54c732c3 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Thu, 12 Aug 2010 10:41:16 +0200 Subject: [PATCH] disable updating djextdirect for now; enable tagging/commit/push --- .release.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.release.sh b/.release.sh index 9aecdda..2c89a4a 100755 --- a/.release.sh +++ b/.release.sh @@ -13,12 +13,12 @@ LASTTAG=`hg tags | grep -v tip | head -n1 | cut -d' ' -f1` cd "${PYWEB}" -echo "Updating djExtDirect." -wget -nv -N 'http://bitbucket.org/Svedrin/djextdirect/raw/tip/djextdirect.py' -if hg status djextdirect.py | grep djextdirect.py > /dev/null; then - # looks like wget changed the file - hg commit djextdirect.py -m "Update djExtDirect" -fi +#echo "Updating djExtDirect." +#wget -nv -N 'http://bitbucket.org/Svedrin/djextdirect/raw/tip/djextdirect.py' +#if hg status djextdirect.py | grep djextdirect.py > /dev/null; then +# # looks like wget changed the file +# hg commit djextdirect.py -m "Update djExtDirect" +#fi VERSIONSTR=`python -c 'import mumble; print mumble.version_str'` @@ -54,9 +54,9 @@ rm "${HISTFILE}" echo "New version will be tagged ${VERSIONSTR}. If this is correct, hit enter to continue." read -echo hg commit "${BASEDIR}/CHANGELOG" -m "Releasing ${VERSIONSTR}." -echo hg tag "${VERSIONSTR}" -echo hg push +hg commit "${BASEDIR}/CHANGELOG" -m "Releasing ${VERSIONSTR}." +hg tag "${VERSIONSTR}" +hg push echo "You successfully released ${VERSIONSTR}!"