Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: shared-enyo.patch
Submitted on March 4, 2015 at 05:33 PM

Section 1 (Text)

diff --git a/debug.html b/debug.html
index 05a436e..6e45513 100644
--- a/debug.html
+++ b/debug.html
@@ -9,9 +9,9 @@
 		<meta name="apple-mobile-web-app-capable" content="yes"/>
 		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
 		<!-- Less.js (for client-side rendering of less stylesheets; comment to use pre-compiled CSS) -->
-		<script src="enyo/tools/less.js"></script>
+		<!-- <script src="../../shared-root/enyo/tools/less.js"></script> -->
 		<!-- enyo (debug) -->
-		<script src="enyo/enyo.js" charset="utf-8"></script>
+		<script src="../../shared-root/enyo/enyo.js" charset="utf-8"></script>
 		<!-- application (debug) -->
 		<script src="source/package.js" charset="utf-8"></script>
 	</head>
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