This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 934b76b Enhanced configure_environment.sh declared readonly varaible
(#17619)
934b76b is described below
commit 934b76b82bf3a0cc87f0986fc1274030bf843743
Author: Shraman Basyal <[email protected]>
AuthorDate: Mon Aug 16 02:16:16 2021 -0500
Enhanced configure_environment.sh declared readonly varaible (#17619)
Co-authored-by: Shraman Basyal <[email protected]>
---
scripts/in_container/configure_environment.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/in_container/configure_environment.sh
b/scripts/in_container/configure_environment.sh
index 07648bf..cfd0c04 100644
--- a/scripts/in_container/configure_environment.sh
+++ b/scripts/in_container/configure_environment.sh
@@ -18,8 +18,8 @@
# Script to check licences for all code. Can be started from any working
directory
export FILES_DIR="/files"
export AIRFLOW_BREEZE_CONFIG_DIR="${FILES_DIR}/airflow-breeze-config"
-VARIABLES_ENV_FILE="variables.env"
-TMUX_CONF_FILE=".tmux.conf"
+readonly VARIABLES_ENV_FILE="variables.env"
+readonly TMUX_CONF_FILE=".tmux.conf"
if [[ -d "${FILES_DIR}" ]]; then
export AIRFLOW__CORE__DAGS_FOLDER="/files/dags"