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, "manifest_version": 2,
"name": "Copay", "name": "Copay",
"description": "A multisignature bitcoin wallet", "description": "A multisignature bitcoin wallet",
"version": "0.0.1", "version": "0.0.5",
"homepage_url": "http://bitpay.github.io/copay", "homepage_url": "http://bitpay.github.io/copay",
"browser_action": { "browser_action": {
"default_title": "Copay", "default_title": "Copay",

View File

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