forked from extern/django-helpdesk
Simple shell script to build django-helpdesk and send to pypi.
This commit is contained in:
parent
ef01618177
commit
cb367fc601
16
build_project.sh
Executable file
16
build_project.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
# django-helpdesk shell script to upload to pypi.
|
||||
|
||||
WORKDIR=/tmp/django-helpdesk-build.$$
|
||||
mkdir $WORKDIR
|
||||
pushd $WORKDIR
|
||||
|
||||
git clone git://github.com/rossp/django-helpdesk.git
|
||||
cd django-helpdesk
|
||||
|
||||
/usr/bin/python2.4 setup.py bdist_egg upload
|
||||
/usr/bin/python2.5 setup.py bdist_egg upload
|
||||
/usr/bin/python2.5 setup.py sdist upload
|
||||
|
||||
popd
|
||||
rm -rf $WORKDIR
|
Loading…
Reference in New Issue
Block a user