summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémy Bobbio <lunar@debian.org>2015-06-11 07:47:30 +0200
committerJérémy Bobbio <lunar@debian.org>2015-06-11 07:47:31 +0200
commit3e308c93a0ca7b46bb8f71b9f34bfb8b234c963f (patch)
treec5c47df49bb3b0cb3fad4335f94df37639bb7e23
parent33bb3a6b9666fb41b702153eb603a7c3c6bb024f (diff)
Fix typo in timezone setting
Thanks Reiner Herrmann. Closes: #788376
-rwxr-xr-xxpi-pack4
1 files changed, 2 insertions, 2 deletions
diff --git a/xpi-pack b/xpi-pack
index 9f3714a..555e623 100755
--- a/xpi-pack
+++ b/xpi-pack
@@ -77,13 +77,13 @@ for JAR_DIR in `find . -type d -name '*.jar\!'` ; do
rm -rf $ABS_JAR_PATH;
done;
echo "Packing $XPIFILE";
-TC=UTC zip -q -X -r $START_DIR/$XPIFILE * -x debian/\* temp-*/\*;
+TZ=UTC zip -q -X -r $START_DIR/$XPIFILE * -x debian/\* temp-*/\*;
[ -f $START_DIR/$XPIFILE ] && XPIDIR=`dirname $START_DIR/$XPIFILE`
ABS_XPIDIR=`cd $XPIDIR; pwd`;
echo "Packed XPI file. It is located in $ABS_XPIDIR";
for JAR_PATH in $PACK_JAR_PATHS ; do
echo "Unpacking and removing $JAR_PATH";
- TC=UTC unzip -q $JAR_PATH -d $JAR_PATH!;
+ TZ=UTC unzip -q $JAR_PATH -d $JAR_PATH!;
rm -f $JAR_PATH;
done;
cd $START_DIR;