diff options
Diffstat (limited to 'release.sh')
-rwxr-xr-x | release.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/release.sh b/release.sh deleted file mode 100755 index 7f791691..00000000 --- a/release.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -export VERSION="0.6.20" - -# tagging -hg tag $VERSION -hg ci -m "bumped revision" - -# creating the releases -rm -rf ./dist - -# now preparing the source release, pushing it and its doc -python2.6 setup.py -q egg_info -RDb '' sdist register upload -cd docs/ -make html -cd .. -python2.6 setup.py upload_docs - -# pushing the bootstrap script -scp distribute_setup.py ziade.org:websites/python-distribute.org/ - -# starting the new dev -hg push - |