From 2e8038f9895efa45731ad13030cf228acb70f6e7 Mon Sep 17 00:00:00 2001 From: Leopere Date: Sun, 30 Sep 2018 17:18:46 -0400 Subject: [PATCH] Updated to use main spee.ch repo The original concept was to pull the now deprecated www.spee.ch multisite repo. --- www.spee.ch/docker-entrypoint.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www.spee.ch/docker-entrypoint.sh b/www.spee.ch/docker-entrypoint.sh index d76e058..0e4075a 100755 --- a/www.spee.ch/docker-entrypoint.sh +++ b/www.spee.ch/docker-entrypoint.sh @@ -108,8 +108,8 @@ function configure_speech() { # install configuration changes here. echof info "Installing configuration files into /app/config/." mkdir -p /app/config/ - cp /usr/local/src/www.spee.ch/cli/defaults/mysqlConfig.json /app/config/mysqlConfig.json - cp /usr/local/src/www.spee.ch/cli/defaults/siteConfig.json /app/config/siteConfig.json + cp /usr/local/src/spee.ch/cli/defaults/mysqlConfig.json /app/config/mysqlConfig.json + cp /usr/local/src/spee.ch/cli/defaults/siteConfig.json /app/config/siteConfig.json echof info "Installing any environment variables that have been set." for i in "${ENVVARS[@]}"; do if [[ -z "$i" ]]; then @@ -150,14 +150,14 @@ if [ "$(ls -A /app)" ]; then fi ## Install all other files after installing siteConfig.json echof info "Making an attempt to nicely merge files using:" - echof run "mv -fnu /usr/local/src/www.spee.ch/* /app/" - mv -fnu /usr/local/src/www.spee.ch/* /app/ + echof run "mv -fnu /usr/local/src/spee.ch/* /app/" + mv -fnu /usr/local/src/spee.ch/* /app/ final_permset else echof info "Speech not installed, installing fresh copy now." configure_speech - echof run "cp -r /usr/local/src/www.spee.ch/* /app/" - cp -r /usr/local/src/www.spee.ch/* /app/ + echof run "cp -r /usr/local/src/spee.ch/* /app/" + cp -r /usr/local/src/spee.ch/* /app/ final_permset fi