django-helpdesk/build_project.sh
2016-10-12 11:14:10 +11:00

15 lines
275 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/django-helpdesk/django-helpdesk.git
cd django-helpdesk
/usr/bin/python setup.py sdist upload
popd
rm -rf $WORKDIR