~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to release.sh

Script generating and uploading release artifacts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -e
 
4
 
 
5
python setup.py sdist upload --sign
 
6
for ABI in 2.4 2.5 2.6; do
 
7
    python$ABI setup.py bdist_egg upload --sign
 
8
done