Browse Source

Merge pull request #153 from mikispag/develop

Fix typo in install scripts causing a copy error when installing or upgrading
use-env-var-docker
kenshin samourai 5 years ago
committed by GitHub
parent
commit
784f110369
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docker/my-dojo/install/install-scripts.sh
  2. 2
      docker/my-dojo/install/upgrade-scripts.sh

2
docker/my-dojo/install/install-scripts.sh

@ -95,7 +95,7 @@ init_config_files() {
if [ "$WHIRLPOOL_INSTALL" == "on" ]; then if [ "$WHIRLPOOL_INSTALL" == "on" ]; then
cp ./nginx/whirlpool.conf ./nginx/dojo-whirlpool.conf cp ./nginx/whirlpool.conf ./nginx/dojo-whirlpool.conf
else else
cp /dev/null ./nginx/dojo-ewhirlpool.conf cp /dev/null ./nginx/dojo-whirlpool.conf
fi fi
echo "Initialized dojo-whirlpool.conf (nginx)" echo "Initialized dojo-whirlpool.conf (nginx)"

2
docker/my-dojo/install/upgrade-scripts.sh

@ -80,7 +80,7 @@ update_config_files() {
if [ "$WHIRLPOOL_INSTALL" == "on" ]; then if [ "$WHIRLPOOL_INSTALL" == "on" ]; then
cp ./nginx/whirlpool.conf ./nginx/dojo-whirlpool.conf cp ./nginx/whirlpool.conf ./nginx/dojo-whirlpool.conf
else else
cp /dev/null ./nginx/dojo-ewhirlpool.conf cp /dev/null ./nginx/dojo-whirlpool.conf
fi fi
echo "Initialized dojo-whirlpool.conf (nginx)" echo "Initialized dojo-whirlpool.conf (nginx)"

Loading…
Cancel
Save