diff options
author | Sasa Bodiroza <jazzva@gmail.com> | 2008-07-21 21:26:20 +0000 |
---|---|---|
committer | Sasa Bodiroza <jazzva@gmail.com> | 2008-07-21 21:26:20 +0000 |
commit | 9994fb129668c15da6ac34b1875543df52231871 (patch) | |
tree | 3f2b88befdec1593ce46bfe6f92a28c5a967e091 /src | |
parent | 4c993840831628acbd074f294e1657bcfda54889 (diff) |
* Fix src/med-xpi-pack to not check if XPI file already exists. It breaks the build
* Document this change in README, and fix one typo in it.
Diffstat (limited to 'src')
-rwxr-xr-x | src/med-xpi-pack | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/med-xpi-pack b/src/med-xpi-pack index a44698c..266a77e 100755 --- a/src/med-xpi-pack +++ b/src/med-xpi-pack @@ -50,10 +50,6 @@ if [ -z $XPIFILE ] ; then echo -e "Missing XPI name.\n"; usage; fi; -if [ -f $XPIFILE ] ; then - echo -e "E: XPI file already exists.\n"; - usage; -fi; if [ ! -d $INDIR ] ; then echo -e "E: Input directory doesn't exist.\n"; usage; |