Skip to content

Commit 2efe061

Browse files
committed
fix: update dotenv and script defaults for improved usability
- Adjusted comments in `.env.dockerized-norlab-project` to reflect the correct repository root and recommended usage commands. - Set default value for DEBUG in `load_repo_dotenv.bash` to "false" for more consistent behavior in non-debug scenarios. Issue NMO-616
1 parent 578bf2b commit 2efe061

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.env.dockerized-norlab-project

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
#
66
# Usage:
77
#
8-
# Important! Source this file from 'libnabo' repository root
9-
# $ cd <path/to/libnabo/>
10-
# $ set -o allexport && source .env.libnabo && set +o allexport
8+
# Important! Source this file from 'dockerized-norlab-project' repository root
9+
# $ cd <path/to/libnabo/>
10+
# $ set -o allexport && source .env.dockerized-norlab-project && set +o allexport
11+
# or better, execute
12+
# $ source load_repo_dotenv.bash
1113
#
1214
# =================================================================================================
1315

load_repo_dotenv.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function dnp::load_repository_environment_variables() {
1414
# ....Setup......................................................................................
1515
local TMP_CWD
1616
TMP_CWD=$( pwd )
17-
local DEBUG
17+
local DEBUG="false"
1818

1919
# ....cli..........................................................................................
2020
while [ $# -gt 0 ]; do

0 commit comments

Comments
 (0)