From: Rajesh Date: Mon, 26 Sep 2016 20:01:04 +0000 (-0400) Subject: Revert "Bug 51 fixedgit status" X-Git-Tag: v1.0.0~2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=commitdiff_plain;h=b6a0c4cae91978d96ec3a942383e0669b9d1eecc;hp=a4061d99ef597e83645fde8836f5399d8ee9297e Revert "Bug 51 fixedgit status" This reverts commit 3de60eeac445470a203286a3231f2e83ada9817b. Signed-off-by: Rajesh --- diff --git a/skyquake/scripts/launch_ui.sh b/skyquake/scripts/launch_ui.sh index 9b6b1229b..5a8f17517 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 /dev/null -o out.log -e err.log skyquake.js --enable-https --keyfile-path="${KEYFILE_PATH}" --certfile-path="${CERTFILE_PATH}" + forever start -a -l forever.log -o out.log -e err.log skyquake.js --enable-https --keyfile-path="${KEYFILE_PATH}" --certfile-path="${CERTFILE_PATH}" else - forever start -a -l /dev/null -o out.log -e err.log skyquake.js + forever start -a -l forever.log -o out.log -e err.log skyquake.js fi }