aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjohannjacobsohn <johann.jacobsohn@directbox.com>2013-02-19 14:49:58 +0100
committerjohannjacobsohn <johann.jacobsohn@directbox.com>2013-02-19 14:49:58 +0100
commit8f146280ae5484874dd98a69f79fb88b75bb5669 (patch)
treecc301dda0dfd57668e921d4129eea9b52d893c27 /tools
parentf8deb2f31bfbc39ba974806e6de1dedec65f1f59 (diff)
downloadbiblez-ng-8f146280ae5484874dd98a69f79fb88b75bb5669.tar.gz
Fix bootplate deployment in paths with whitespace
Currently cd /dev/Path With Whitespace/bootplate tools/deploy.sh fails.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/deploy.sh b/tools/deploy.sh
index e5a96e5..e9af9fd 100755
--- a/tools/deploy.sh
+++ b/tools/deploy.sh
@@ -13,7 +13,7 @@ DEPLOY="$ENYO/tools/deploy.js"
if command -v node >/dev/null 2>&1; then
# use node to invoke deploy with imported parameters
echo "enyo/tools/minify.sh args: " $@
- node $DEPLOY $@
+ node "$DEPLOY" $@
else
echo "No node found in path"
exit 1