From fa34d894b5f88e17534ddb8fc96e7908a452ed9a Mon Sep 17 00:00:00 2001 From: Lucas F Date: Fri, 3 Dec 2021 14:29:27 -0300 Subject: [PATCH] =?UTF-8?q?corre=C3=A7=C3=A3o=20da=20chamada=20update=5Fse?= =?UTF-8?q?t=20em=20validate=5Fenv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- centos.conf | 2 +- run.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/centos.conf b/centos.conf index 8febf31..09eb297 100755 --- a/centos.conf +++ b/centos.conf @@ -27,7 +27,7 @@ PUB_IP="" # Nome da pasta que está no mesmo nível do arquivo wsgi.py # Folder name that is at the same level as wsgi.py file -WSGI_FOLDER_NAME="3m" +WSGI_FOLDER_NAME="appdirname" # Nome desejado para o serviço no Systemctl # Systemctl desirable name diff --git a/run.sh b/run.sh index b1ceddb..3f07e58 100755 --- a/run.sh +++ b/run.sh @@ -231,9 +231,9 @@ validate_env() { if [[ -n resp_env ]]; then if [[ ${resp_env,,} == "sim" ]] || [[ ${resp_env,,} == "s" ]] || [[ ${resp_env,,} == "yes" ]] || [[ ${resp_env,,} == "y" ]]; then make_env_file + else + update_step_error "$x" fi - else - update_step_error "$x" fi fi }