Merge pull request #1354 from matiu/fixes-extensions-build

fix build for browsers
This commit is contained in:
Gustavo Maximiliano Cortez 2014-09-10 16:04:17 -03:00
commit 5a001c8737
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ checkOK() {
BUILDDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
APPDIR="$BUILDDIR/copay-chrome-extension"
ZIPFILE="copay-chrome-extension.zip"
VERSION=`cut -d '"' -f2 $BUILDDIR/../../version.js`
VERSION=`cut -d '"' -f2 $BUILDDIR/../../version.js|head -n 1`
# Move to the build directory
cd $BUILDDIR

View file

@ -20,7 +20,7 @@ checkOK() {
BUILDDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
APPDIR="$BUILDDIR/firefox-addon"
ZIPFILE="copay-firefox-addon.zip"
VERSION=`cut -d '"' -f2 $BUILDDIR/../../version.js`
VERSION=`cut -d '"' -f2 $BUILDDIR/../../version.js|head -n 1`
cfx >/dev/null