0a86024797
In shell scripts an unquoted $* is rarely useful, for example because it breaks in presence of file names with spaces. References: - https://google.github.io/styleguide/shell.xml Use "$@" unless you have a specific reason to use $*. - https://unix.stackexchange.com/questions/41571/what-is-the-difference-between-and#94200 Short answer: use "$@" (note the double quotes). The other forms are very rarely useful.
20 lines
693 B
Bash
Executable file
20 lines
693 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#Move to the folder where ep-lite is installed
|
|
cd `dirname $0`
|
|
|
|
#Was this script started in the bin folder? if yes move out
|
|
if [ -d "../bin" ]; then
|
|
cd "../"
|
|
fi
|
|
|
|
#Prepare the environment
|
|
bin/installDeps.sh || exit 1
|
|
|
|
echo "If you are new to debugging Node.js with Chrome DevTools, take a look at this page:"
|
|
echo "https://medium.com/@paul_irish/debugging-node-js-nightlies-with-chrome-devtools-7c4a1b95ae27"
|
|
echo "Open 'chrome://inspect' on Chrome to start debugging."
|
|
|
|
#Use 0.0.0.0 to allow external connections to the debugger
|
|
#(ex: running Etherpad on a docker container). Use default port # (9229)
|
|
node --inspect=0.0.0.0:9229 node_modules/ep_etherpad-lite/node/server.js "$@"
|