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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
docker/my-dojo/install/install-scripts.sh
-
docker/my-dojo/install/upgrade-scripts.sh
|
|
@ -95,7 +95,7 @@ init_config_files() { |
|
|
|
if [ "$WHIRLPOOL_INSTALL" == "on" ]; then |
|
|
|
cp ./nginx/whirlpool.conf ./nginx/dojo-whirlpool.conf |
|
|
|
else |
|
|
|
cp /dev/null ./nginx/dojo-ewhirlpool.conf |
|
|
|
cp /dev/null ./nginx/dojo-whirlpool.conf |
|
|
|
fi |
|
|
|
echo "Initialized dojo-whirlpool.conf (nginx)" |
|
|
|
|
|
|
|
|
|
@ -80,7 +80,7 @@ update_config_files() { |
|
|
|
if [ "$WHIRLPOOL_INSTALL" == "on" ]; then |
|
|
|
cp ./nginx/whirlpool.conf ./nginx/dojo-whirlpool.conf |
|
|
|
else |
|
|
|
cp /dev/null ./nginx/dojo-ewhirlpool.conf |
|
|
|
cp /dev/null ./nginx/dojo-whirlpool.conf |
|
|
|
fi |
|
|
|
echo "Initialized dojo-whirlpool.conf (nginx)" |
|
|
|
|
|
|
|