Merge pull request #391 from colkito/fix/script-generator-path

fixed script generator path
This commit is contained in:
Gustavo Maximiliano Cortez 2014-05-16 09:34:20 -03:00
commit a5a4380439
2 changed files with 3 additions and 4 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Copay",
"description": "A multisignature bitcoin wallet",
"version": "0.0.1",
"version": "0.0.5",
"homepage_url": "http://bitpay.github.io/copay",
"browser_action": {
"default_title": "Copay",

View File

@ -8,12 +8,11 @@ BASENAME=`basename $ROOTDIR`
if [ $BASENAME = "util" ]; then
# Moving to root path
cd ../
ROOTDIR=`pwd`
fi
# Configs
APPDIR="$ROOTDIR/webapp"
CHROMEDIR="$ROOTDIR/chrome-extension"
APPDIR="./webapp"
CHROMEDIR="./chrome-extension"
LIBDIR="$APPDIR/lib"
DOWNLOADDIR="$APPDIR/download"