mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +01:00
17 lines
356 B
Bash
Executable File
17 lines
356 B
Bash
Executable File
#!/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
|