diff options
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 { |
