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