summaryrefslogtreecommitdiff
path: root/configDefault.go
diff options
context:
space:
mode:
Diffstat (limited to 'configDefault.go')
-rw-r--r--configDefault.go8
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")
}