diff options
| author | Jeff Carr <[email protected]> | 2025-01-11 05:55:42 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-11 05:55:42 -0600 |
| commit | 48b19f1e70331fc6213a2e3a179e8b18a26aaecc (patch) | |
| tree | 1348fc46484db1909b6c079888d61a046fa78b2b /configDefault.go | |
| parent | 1e38cacfa788fc6c0ed2abcf627f4d6198f0b2ae (diff) | |
new protobuf file
Diffstat (limited to 'configDefault.go')
| -rw-r--r-- | configDefault.go | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/configDefault.go b/configDefault.go index 89e8ba8..3246798 100644 --- a/configDefault.go +++ b/configDefault.go @@ -2,8 +2,6 @@ package forgepb import ( "fmt" - - "go.wit.com/log" ) func (all *ForgeConfigs) sampleConfig() { @@ -11,11 +9,7 @@ func (all *ForgeConfigs) sampleConfig() { new1.GoPath = "go.wit.com" new1.Writable = true new1.Directory = true - if all.Append(new1) { - log.Info("added", new1.GoPath, "ok") - } else { - log.Info("added", new1.GoPath, "failed") - } + all.Append(new1) fmt.Println("first time user. adding an example config file with", len(all.ForgeConfigs), "repos") } |
