summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSasa Bodiroza <jazzva@gmail.com>2008-07-24 10:47:53 +0000
committerSasa Bodiroza <jazzva@gmail.com>2008-07-24 10:47:53 +0000
commita3125c5b22770211b05009fc81d4adf78e5c69c7 (patch)
tree973c4e34c32c34cd14563115611469b279fd5147
parent539025a54d5fc15d488704bb0039b9a803d8fe99 (diff)
* Fix bug where xpi file is placed in the same dir where the unpacked extensions is.
* Don't show where it's located for now... It's not same dir as anymore
-rwxr-xr-xsrc/med-xpi-pack4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/med-xpi-pack b/src/med-xpi-pack
index bc21616..56b6039 100755
--- a/src/med-xpi-pack
+++ b/src/med-xpi-pack
@@ -69,8 +69,8 @@ for JAR_DIR in `find . -type d -name *.jar\!` ; do
rm -rf $ABS_JAR_PATH;
done;
echo "Packing $XPIFILE";
-zip -q -r $XPIFILE * -x debian/\* temp-*/\*;
-echo "Packed XPI file. It is located in `pwd`";
+zip -q -r $START_DIR/$XPIFILE * -x debian/\* temp-*/\*;
+echo "Packed XPI file."; #It is located in $START_DIR";
for JAR_PATH in `find . -name *.jar` ; do
echo "Unpacking $JAR_PATH";
unzip -q $JAR_PATH -d $JAR_PATH!;