summaryrefslogtreecommitdiff
path: root/src/med-xpi-unpack
diff options
context:
space:
mode:
authorBenjamin Drung <bdrung@ubuntu.com>2009-09-22 09:45:49 +0200
committerBenjamin Drung <bdrung@ubuntu.com>2009-09-22 09:45:49 +0200
commitec63801bfbedf2d71623400c6fc21d4b532cd278 (patch)
tree793afec19d1ab47f461f608f06e2054159be741e /src/med-xpi-unpack
parent9282e6743cb2257879966638caf8f4a8940ba873 (diff)
* med-xpi-{pack,unpack}:
- add parenthesis to $1 to avoid problems if $1 is empty - update src/med-xpi-pack - update src/med-xpi-unpack
Diffstat (limited to 'src/med-xpi-unpack')
-rwxr-xr-xsrc/med-xpi-unpack2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/med-xpi-unpack b/src/med-xpi-unpack
index 2a22377..778e4b5 100755
--- a/src/med-xpi-unpack
+++ b/src/med-xpi-unpack
@@ -33,7 +33,7 @@ usage() {
exit 1;
}
-if [ $1 = "--help" -o $1 = "-h" ] ; then
+if [ "$1" = "--help" -o "$1" = "-h" ] ; then
usage;
fi;