django-helpdesk/build_project.sh

15 lines
265 B
Bash
Raw Normal View History

2013-01-23 01:01:40 +01:00
#!/bin/bash
# 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
2013-01-23 01:00:22 +01:00
/usr/bin/python setup.py sdist upload
popd
rm -rf $WORKDIR