Fix typo in container-start.sh

This commit is contained in:
Thomas Gläßle 2017-04-08 22:08:38 +02:00
parent 074f27237f
commit c182a407cf
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@ mkdir -p customize
[[ -n "$USE_SSL" ]] && echo "Using secure websockets: $USE_SSL" \
&& sed -i "s/useSecureWebsockets: .*/useSecureWebsockets: ${USE_SSL},/g" customize/config.js
[[ -n "$USE_SSL" ]] && echo "Using storage adapter: $STORAGE" \
[[ -n "$STORAGE" ]] && echo "Using storage adapter: $STORAGE" \
&& sed -i "s/storage: .*/storage: ${STORAGE},/g" customize/config.js
[[ -n "$LOG_TO_STDOUT" ]] && echo "Logging to stdout: $LOG_TO_STDOUT" \
&& sed -i "s/logToStdout: .*/logToStdout: ${LOG_TO_STDOUT},/g" customize/config.js
exec node ./server.js
exec node ./server.js