mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
actually take the debugging flag seriously
This commit is contained in:
parent
da03778cf9
commit
50a6eb64ec
1 changed files with 1 additions and 1 deletions
|
|
@ -380,7 +380,7 @@ func NewAppConfig(name, version, commit, date string, buildSource string, debugg
|
||||||
Version: version,
|
Version: version,
|
||||||
Commit: commit,
|
Commit: commit,
|
||||||
BuildDate: date,
|
BuildDate: date,
|
||||||
Debug: true, // TODO: restore os.Getenv("DEBUG") == "TRUE"
|
Debug: debuggingFlag || os.Getenv("DEBUG") == "TRUE",
|
||||||
BuildSource: buildSource,
|
BuildSource: buildSource,
|
||||||
UserConfig: userConfig,
|
UserConfig: userConfig,
|
||||||
ConfigDir: configDir,
|
ConfigDir: configDir,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue