From cb367fc6019e7b7e204ba58595a45d35634a5e22 Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Wed, 26 Jan 2011 00:35:01 +0000 Subject: [PATCH] Simple shell script to build django-helpdesk and send to pypi. --- build_project.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 build_project.sh diff --git a/build_project.sh b/build_project.sh new file mode 100755 index 00000000..d06e3075 --- /dev/null +++ b/build_project.sh @@ -0,0 +1,16 @@ +#!/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