From de9e2cccfcb48761e0221ced7caca390f4ca3a33 Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 28 Mar 2019 17:55:23 +0100 Subject: [PATCH] account for moved config.js throughout the rest of container-start.sh --- container-start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/container-start.sh b/container-start.sh index 7cbbf3143..a220be8a8 100755 --- a/container-start.sh +++ b/container-start.sh @@ -13,13 +13,13 @@ sedeasy() { # Configure [ -n "$USE_SSL" ] && echo "Using secure websockets: $USE_SSL" \ - && sedeasy "useSecureWebsockets: [^,]*," "useSecureWebsockets: ${USE_SSL}," customize/config.js + && sedeasy "useSecureWebsockets: [^,]*," "useSecureWebsockets: ${USE_SSL}," config/config.js [ -n "$STORAGE" ] && echo "Using storage adapter: $STORAGE" \ - && sedeasy "storage: [^,]*," "storage: ${STORAGE}," customize/config.js + && sedeasy "storage: [^,]*," "storage: ${STORAGE}," config/config.js [ -n "$LOG_TO_STDOUT" ] && echo "Logging to stdout: $LOG_TO_STDOUT" \ - && sedeasy "logToStdout: [^,]*," "logToStdout: ${LOG_TO_STDOUT}," customize/config.js + && sedeasy "logToStdout: [^,]*," "logToStdout: ${LOG_TO_STDOUT}," config/config.js export FRESH=1 exec node ./server.js