summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-03 14:19:18 -0500
committerJeff Carr <[email protected]>2025-10-03 14:19:18 -0500
commitf19039b4ae20fbf01248da9fbdf97ef93c7080d0 (patch)
treefcd1f9178451d0a4b0838ee5390d5f2ffb486428 /structs.go
parente4b679003ce0847dd65254a5e0a0b3239fd0d566 (diff)
try to fix .deb builds
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/structs.go b/structs.go
index 311cba3..50c1c9b 100644
--- a/structs.go
+++ b/structs.go
@@ -26,8 +26,9 @@ type mainType struct {
// move these to mainType
var failed map[*gitpb.Repo]string
-var state map[*gitpb.Repo]string
-var debnames map[*gitpb.Repo]string
+
+// var state map[*gitpb.Repo]string
+// var debnames map[*gitpb.Repo]string
func initForge() {
if me.forge == nil {
@@ -48,8 +49,8 @@ func initMain() {
me.auto = prep.Bash3(&argv) // add support for bash autocomplete with go-arg
failed = make(map[*gitpb.Repo]string)
- state = make(map[*gitpb.Repo]string)
- debnames = make(map[*gitpb.Repo]string)
+ // state = make(map[*gitpb.Repo]string)
+ // debnames = make(map[*gitpb.Repo]string)
me.homedir, _ = os.UserHomeDir()
dumpDebug()