summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index 97e088d..99d5172 100644
--- a/structs.go
+++ b/structs.go
@@ -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 {