From 3f10f5007564b06e06415821f76c71503a6c317e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 7 Sep 2009 22:11:31 +0000 Subject: [PATCH] package.sh rewritten --- package.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/package.sh b/package.sh index 8487e7b686..0c8dddb3cf 100644 --- a/package.sh +++ b/package.sh @@ -1,16 +1,14 @@ #!/bin/sh +NAME=mailer_dev_`date +%Y%m%d_%H%M%S`.zip + sh ./clear-cache.sh echo -n "$0: Packaging... " -zip -9 mxchange-0.3.0_dev.zip docs/* Doxyfile *.php *.sh > /dev/null 2>&1 +zip -9 $NAME docs/* Doxyfile *.php *.sh > /dev/null 2>&1 echo -n "." -zip -9r mxchange-0.3.0_dev.zip application/ db/ devel/ Doxyfile inc/ templates/ tests/ > /dev/null 2>&1 +zip -9r $NAME application/ db/ devel/ Doxyfile inc/ templates/ tests/ > /dev/null 2>&1 echo -n "." -zip -d mxchange-0.3.0_dev.zip docs/warn.log db/*/*.serialized > /dev/null 2>&1 +zip -d $NAME docs/warn.log db/*/*.serialized > /dev/null 2>&1 echo ". done" - -echo "$0: Renaming..." -mv mxchange-0.3.0_dev.zip mxchange-0.3.0_dev_`date +%Y%m%d_%H%M%S`.zip - echo "$0: All done." -- 2.39.2