diff options
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 |
