summaryrefslogtreecommitdiff
path: root/stateWindow.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 09:25:10 -0500
committerJeff Carr <[email protected]>2025-09-09 09:25:10 -0500
commit2677e5c0cddde1f3bc0aadbc60ccf000864b66de (patch)
tree8fb707499454e6a16e01432a405bbac8575620db /stateWindow.go
parent8edefa6dadd1f4c3c43e145cc0431654720e2953 (diff)
fixes. needs a refactorv0.22.128
Diffstat (limited to 'stateWindow.go')
-rw-r--r--stateWindow.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stateWindow.go b/stateWindow.go
index b04a5f3..a0cc7a1 100644
--- a/stateWindow.go
+++ b/stateWindow.go
@@ -35,7 +35,7 @@ func makebasicWindow() *gadgets.BasicWindow {
group1.NewButton("Make .deb", func() {
win.Disable()
- if ok, err := me.cBox.buildPackage(); ok {
+ if ok, err := buildPackage(me.cBox); ok {
log.Info("build worked")
os.Exit(0)
} else {