django-helpdesk/build_project.sh
2013-01-23 11:01:40 +11:00

15 lines
265 B
Bash
Executable File

#!/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
/usr/bin/python setup.py sdist upload
popd
rm -rf $WORKDIR