Allow settings filename to be passed as a cli option

This commit is contained in:
Jordan 2012-02-21 14:20:45 -05:00
parent 10cbb485fb
commit 8bac77ff80
4 changed files with 58 additions and 8 deletions

View file

@ -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 $*