summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-26 02:18:44 -0500
committerJeff Carr <[email protected]>2025-09-26 02:18:44 -0500
commite9d6e00ac675e7349be22120e4ff14920d2d4eee (patch)
tree8a5a92ef67a19bab1da5859d103aef0806910365 /config.go
parent00df676a2acb1ced957a9ee1a123fc1f9d6381c7 (diff)
remove ENV stuffv0.0.151
Diffstat (limited to 'config.go')
-rw-r--r--config.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/config.go b/config.go
index fd2f94e..cff71be 100644
--- a/config.go
+++ b/config.go
@@ -3,8 +3,6 @@
package forgepb
import (
- "os"
-
"go.wit.com/lib/config"
"go.wit.com/lib/gui/prep"
"go.wit.com/log"
@@ -65,10 +63,6 @@ func (cfg *ForgeConfigs) DumpENV() {
}
log.Infof("CfgPB.Mode = %s\n", cfg.Mode)
// log.Infof("CfgPB.Hostname=%s\n", cfg.Hostname)
-
- if cfg.ReposPB != os.Getenv("FORGE_REPOSPB") {
- log.Infof("CfgPB file problem: cfg.ReposPB=%s != FORGE_REPOSPB=%s\n", cfg.ReposPB, os.Getenv("FORGE_REPOSPB"))
- }
}
/*
@@ -81,6 +75,3 @@ func (cfg *ForgeConfigs) DumpENV() {
f.SetConfigSave(true)
}
*/
-
-func (cfg *ForgeConfigs) InitDefaults() {
-}