From 4a18f0d97d9654a6a3749b67b0f24f0c7d5c94ff Mon Sep 17 00:00:00 2001
From: Bryce York <bryce@meetbryce.com>
Date: Wed, 28 Mar 2018 22:38:30 +1100
Subject: [PATCH] Fix bug with cleanRun.sh

Now works if the output of `pwd` has a space in it.
---
 bin/cleanRun.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/cleanRun.sh b/bin/cleanRun.sh
index ef802815d..57325dd23 100755
--- a/bin/cleanRun.sh
+++ b/bin/cleanRun.sh
@@ -38,4 +38,4 @@ bin/installDeps.sh $* || exit 1
 echo "Started Etherpad..."
 
 SCRIPTPATH=`pwd -P`
-node $SCRIPTPATH/node_modules/ep_etherpad-lite/node/server.js $*
+node "${$SCRIPTPATH}/node_modules/ep_etherpad-lite/node/server.js" $*
-- 
GitLab