diff options
author | Jordan <jordan.hollinger@gmail.com> | 2012-02-21 14:20:45 -0500 |
---|---|---|
committer | Jordan <jordan.hollinger@gmail.com> | 2012-02-21 14:20:45 -0500 |
commit | 8bac77ff803208b401b67e7fbb4b68bf76c4301b (patch) | |
tree | c69be25e80d8447ef80ef1005c4575ff25b337f6 /bin/run.sh | |
parent | 10cbb485fbb456901e7c055b8e66d618f9af45bc (diff) | |
download | etherpad-lite-8bac77ff803208b401b67e7fbb4b68bf76c4301b.zip |
Allow settings filename to be passed as a cli option
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 $* |