diff options
Diffstat (limited to 'bin/run.sh')
-rwxr-xr-x | bin/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,9 +21,9 @@ if [ "$(id -u)" -eq 0 ]; then fi #prepare the enviroment -bin/installDeps.sh || exit 1 +bin/installDeps.sh $* || exit 1 #Move to the node folder and start echo "start..." cd "node" -node server.js +node server.js $* |