summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-17 01:15:17 -0600
committerJeff Carr <[email protected]>2024-12-17 01:15:17 -0600
commitb2e51ccb9efc326fda8615b1d2ad9f2ea3f16652 (patch)
tree2c754b6fa07b76d4676498dd5de5bf75b2b509a6 /structs.go
parent1369d2df3168426e450dd07314dcaf82dccf232c (diff)
improve Init()
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go11
1 files changed, 6 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index 7ec1abb..90b84bc 100644
--- a/structs.go
+++ b/structs.go
@@ -13,11 +13,12 @@ type Forge struct {
initOnce sync.Once
initErr error // init error, if any
- goSrc string // the path to go/src
- goWork bool // means the user is currently using a go.work file
- Config *ForgeConfigs // config repos for readonly, private, etc
- Repos *gitpb.Repos
- Machine *zoopb.Machine
+ goSrc string // the path to go/src
+ goWork bool // means the user is currently using a go.work file
+ Config *ForgeConfigs // config repos for readonly, private, etc
+ Repos *gitpb.Repos
+ Machine *zoopb.Machine
+ configSave bool
}
func (f *Forge) GetGoSrc() string {