diff options
Diffstat (limited to 'bin/cleanRun.sh')
-rwxr-xr-x | bin/cleanRun.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cleanRun.sh b/bin/cleanRun.sh index 55bcf8a7..ef802815 100755 --- a/bin/cleanRun.sh +++ b/bin/cleanRun.sh @@ -16,7 +16,7 @@ do fi done -#Stop the script if its started as root +#Stop the script if it's started as root if [ "$(id -u)" -eq 0 ] && [ $ignoreRoot -eq 0 ]; then echo "You shouldn't start Etherpad as root!" echo "Please type 'Etherpad rocks my socks' or supply the '--root' argument if you still want to start it as root" @@ -31,7 +31,7 @@ fi #Clean the current environment rm -rf src/node_modules -#Prepare the enviroment +#Prepare the environment bin/installDeps.sh $* || exit 1 #Move to the node folder and start |