From: KIRAN KASHALKAR Date: Thu, 22 Sep 2016 18:32:54 +0000 (-0400) Subject: Bug 52 fixed X-Git-Tag: v1.0.0~4^2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=commitdiff_plain;h=40389416600bad37b1bdd12f6739b71b580e9db0;ds=sidebyside Bug 52 fixed Signed-off-by: KIRAN KASHALKAR --- diff --git a/skyquake/scripts/launch_ui.sh b/skyquake/scripts/launch_ui.sh index 5a8f17517..9b6b1229b 100755 --- a/skyquake/scripts/launch_ui.sh +++ b/skyquake/scripts/launch_ui.sh @@ -36,9 +36,9 @@ start_servers() { echo "Running Node.js Skyquake server. HTTPS Enabled: ${ENABLE_HTTPS}" cd .. if [ ! -z "${ENABLE_HTTPS}" ]; then - forever start -a -l forever.log -o out.log -e err.log skyquake.js --enable-https --keyfile-path="${KEYFILE_PATH}" --certfile-path="${CERTFILE_PATH}" + forever start -a -l /dev/null -o out.log -e err.log skyquake.js --enable-https --keyfile-path="${KEYFILE_PATH}" --certfile-path="${CERTFILE_PATH}" else - forever start -a -l forever.log -o out.log -e err.log skyquake.js + forever start -a -l /dev/null -o out.log -e err.log skyquake.js fi }