We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b2d8d commit 6fb05adCopy full SHA for 6fb05ad
makexpi.sh
@@ -44,7 +44,9 @@ if [ -n "$1" ] && [ "$2" != "--no-recurse" ] && [ "$1" != "--fast" ] ; then
44
cd ..
45
XPI_NAME="$APP_NAME-$1"
46
cp $SUBDIR/pkg/$XPI_NAME.xpi pkg/
47
- cp $SUBDIR/pkg/$XPI_NAME-amo.xpi pkg/
+ if ! cp $SUBDIR/pkg/$XPI_NAME-amo.xpi pkg/ 2> /dev/null ; then
48
+ echo Old version does not support AMO
49
+ fi
50
rm -rf $SUBDIR
51
exit 0
52
fi
0 commit comments