diff options
| author | Jeff Carr <[email protected]> | 2025-09-13 07:45:13 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-13 07:45:13 -0500 |
| commit | 2fccf603358f5c7e3f3403c1ca5e7f50451d88fd (patch) | |
| tree | fdfd168e8da84b3a003521ddb18a88b69734e936 /forgeConfig.config.go | |
| parent | 2b3bd66ef2ce31fab8b4c209f3deccaa4fb9c117 (diff) | |
other stuffv0.0.138
Diffstat (limited to 'forgeConfig.config.go')
| -rw-r--r-- | forgeConfig.config.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/forgeConfig.config.go b/forgeConfig.config.go index 6b7f084..b5080a6 100644 --- a/forgeConfig.config.go +++ b/forgeConfig.config.go @@ -28,7 +28,9 @@ func (cfg *ForgeConfigs) ConfigSave() error { } func (cfg *ForgeConfigs) DumpENV() { - log.Infof("RepoPB file: cfg.ReposPB=%s FORGE_REPOSPB=%s\n", cfg.ReposPB, os.Getenv("FORGE_REPOSPB")) + if cfg.ReposPB != os.Getenv("FORGE_REPOSPB") { + log.Infof("RepoPB file problem: cfg.ReposPB=%s != FORGE_REPOSPB=%s\n", cfg.ReposPB, os.Getenv("FORGE_REPOSPB")) + } } // load the ~/.config/forge/ files |
