Merge pull request #1990 from ether/run-path-available-in-ps-aux

allow nix file process path to be visible in ps aux
This commit is contained in:
John McLear 2013-11-10 10:30:45 -08:00
commit 5c1daa33be
1 changed files with 4 additions and 1 deletions

View File

@ -33,4 +33,7 @@ bin/installDeps.sh $* || exit 1
#Move to the node folder and start
echo "start..."
node node_modules/ep_etherpad-lite/node/server.js $*
SCRIPTPATH=`pwd -P`
node $SCRIPTPATH/node_modules/ep_etherpad-lite/node/server.js $*