summaryrefslogtreecommitdiff
path: root/bin/run.sh
diff options
context:
space:
mode:
authorJordan <jordan.hollinger@gmail.com>2012-02-21 14:20:45 -0500
committerJordan <jordan.hollinger@gmail.com>2012-02-21 14:20:45 -0500
commit8bac77ff803208b401b67e7fbb4b68bf76c4301b (patch)
treec69be25e80d8447ef80ef1005c4575ff25b337f6 /bin/run.sh
parent10cbb485fbb456901e7c055b8e66d618f9af45bc (diff)
downloadetherpad-lite-8bac77ff803208b401b67e7fbb4b68bf76c4301b.zip
Allow settings filename to be passed as a cli option
Diffstat (limited to 'bin/run.sh')
-rwxr-xr-xbin/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/run.sh b/bin/run.sh
index a5245ff7..c409920e 100755
--- a/bin/run.sh
+++ b/bin/run.sh
@@ -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 $*