From patchwork Mon Feb 28 11:54:18 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Get rid of some code duplication in parsemail-batch.sh. Date: Mon, 28 Feb 2011 01:54:18 -0000 From: Guilherme Salgado X-Patchwork-Id: 84822 Message-Id: <20110228115401.9401.7518.stgit@localhost6.localdomain6> To: patchwork@lists.ozlabs.org Cc: Jeremy Kerr , patches@linaro.org It now uses parsemail.sh instead of parsemail.py as the former sets the required environment variables that were being set in parsemail-batch.sh. Signed-off-by: Guilherme Salgado --- apps/patchwork/bin/parsemail-batch.sh | 10 ++-------- 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/apps/patchwork/bin/parsemail-batch.sh b/apps/patchwork/bin/parsemail-batch.sh index d786022..31ef4f0 100755 --- a/apps/patchwork/bin/parsemail-batch.sh +++ b/apps/patchwork/bin/parsemail-batch.sh @@ -19,7 +19,7 @@ # along with Patchwork; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -PATCHWORK_BASE="/srv/patchwork" +PATCHWORK_BINDIR=`dirname $0` if [ $# -ne 1 ] then @@ -41,11 +41,5 @@ ls -1rt "$mail_dir" | while read line; do echo $line - PYTHONPATH="$PATCHWORK_BASE/apps":"$PATCHWORK_BASE/lib/python" \ - DJANGO_SETTINGS_MODULE=settings \ - "$PATCHWORK_BASE/apps/patchwork/bin/parsemail.py" < \ - "$mail_dir/$line" + $PATCHWORK_BINDIR/parsemail.sh < "$mail_dir/$line" done - - -