diff --git a/debug.html b/debug.html index 05a436e..6e45513 100644 --- a/debug.html +++ b/debug.html @@ -9,9 +9,9 @@ - + - + diff --git a/deploy.json b/deploy.json index c2f131f..3bcf7ea 100644 --- a/deploy.json +++ b/deploy.json @@ -2,5 +2,5 @@ "enyo": "./enyo", "packagejs": "./package.js", "assets": ["./icon.png", "./index.html", "./assets"], - "libs": ["./lib/onyx", "./lib/layout"] + "libs": ["../../shared-root/lib/onyx", "../../shared-root/lib/layout"] } diff --git a/tools/deploy.sh b/tools/deploy.sh index c4de554..f710edd 100755 --- a/tools/deploy.sh +++ b/tools/deploy.sh @@ -16,7 +16,7 @@ TOOLS=$(cd `dirname $0` && pwd) SRC="$TOOLS/.." # enyo location -ENYO="$SRC/enyo" +ENYO="$SRC/../../shared-root/enyo" # deploy script location DEPLOY="$ENYO/tools/deploy.js" @@ -24,8 +24,8 @@ DEPLOY="$ENYO/tools/deploy.js" # check for node, but quietly if command -v node >/dev/null 2>&1; then # use node to invoke deploy with imported parameters - echo "node $DEPLOY -T -s $SRC -o $SRC/deploy $@" - node "$DEPLOY" -T -s "$SRC" -o "$SRC/deploy" $@ + echo "node $DEPLOY -T -s $SRC -o $SRC/deploy -e $ENYO $@" + node "$DEPLOY" -T -s "$SRC" -o "$SRC/deploy" -e "$ENYO" $@ else echo "No node found in path" exit 1