blob: 6af72616b809ab3ad235cc0fe3e09a6e8c71c41e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
export VERSION="0.6.2"
# creating the releases
rm -rf dist
# now preparing the source release
python2.6 setup.py -q egg_info -RDb '' sdist register upload
# pushin the bootstrap script
scp distribute_setup.py ziade.org:nightly/build/
|