diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 01:53:53 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 01:53:53 -0500 |
| commit | dbde2f51b8acb4043203b5592531c6715896c800 (patch) | |
| tree | bb892866022b2f8045784091b181592dc480b3c8 /structs.go | |
| parent | ac107331fc376edc5343732f7ebcd0d8e3177282 (diff) | |
cleanup config file handling
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -13,8 +13,6 @@ type Forge struct { once sync.Once initErr error // init error, if any goSrc string // the path to go/src - repoPB string // the path to the repos.pb cache file - configDir string // normally ~/.config/forge goWork bool // means the user is currently using a go.work file Config *ForgeConfigs // config repos for readonly, private, etc Repos *gitpb.Repos // the repo protobufs @@ -26,7 +24,8 @@ type Forge struct { rillX int // used for Rill() rillY int // used for Rill() Patchsets *Patchsets // patches that are in progress - patchDir string // where patches are stored + configDir string // normally ~/.config/forge + // patchDir string // where patches are stored } func (f *Forge) GetGoSrc() string { |
