django-helpdesk/build_project.sh

15 lines
275 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
2016-10-12 02:14:10 +02:00
git clone git://github.com/django-helpdesk/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