Fix variable visibility

This commit is contained in:
Martin Lablans
2024-01-09 11:43:57 +01:00
parent c4018aae08
commit 5ba1a1a820
3 changed files with 15 additions and 15 deletions

View File

@ -72,14 +72,14 @@ loadVars() {
case "$ENVIRONMENT" in
"production")
FOCUS_TAG=main
export FOCUS_TAG=main
;;
"test")
FOCUS_TAG=develop
export FOCUS_TAG=develop
;;
*)
report_error 7 "Environment \"$ENVIRONMENT\" is unknown. Assuming production. FIX THIS!"
FOCUS_TAG=main
export FOCUS_TAG=main
;;
esac
}