mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-07 08:34:29 +01:00
15 lines
275 B
Bash
Executable File
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
|