compiles. kinda runs
This commit is contained in:
parent
c2b7b3c14d
commit
a89dc7f976
|
@ -11,8 +11,7 @@ import (
|
|||
var VERSION string
|
||||
|
||||
func main() {
|
||||
var f forgepb.Forge
|
||||
f.Init()
|
||||
f := forgepb.Init()
|
||||
|
||||
if argv.List {
|
||||
f.ConfigPrintTable()
|
||||
|
|
13
init.go
13
init.go
|
@ -21,13 +21,10 @@ func init() {
|
|||
os.Setenv("FORGE_GOSRC", goSrcDir)
|
||||
}
|
||||
|
||||
func (f *Forge) Init() {
|
||||
if f == nil {
|
||||
f = new(Forge)
|
||||
}
|
||||
if f.Config == nil {
|
||||
f.Config = new(ForgeConfigs)
|
||||
}
|
||||
func Init() *Forge {
|
||||
f := new(Forge)
|
||||
f.Config = new(ForgeConfigs)
|
||||
|
||||
// load the ~/.config/forge/ config
|
||||
if err := f.Config.ConfigLoad(); err != nil {
|
||||
log.Warn("forgepb.ConfigLoad() failed", err)
|
||||
|
@ -40,6 +37,8 @@ func (f *Forge) Init() {
|
|||
|
||||
f.goSrc = os.Getenv("FORGE_GOSRC")
|
||||
f.ScanGoSrc()
|
||||
log.Warn("GOT HERE. forge.Init(). f can not be nil")
|
||||
return f
|
||||
}
|
||||
|
||||
func (f *Forge) SortByPath() *ForgeConfigIterator {
|
||||
|
|
Loading…
Reference in New Issue