summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 09:25:56 -0500
committerJeff Carr <[email protected]>2025-09-09 09:25:56 -0500
commit519be646896096f9ac6780e5b6818869d2d24596 (patch)
tree4ec47c4fb3bca1a107b42355016a640cd2ae2c2e
parente629211edd82f3910cff3c3db2c272a48c01fa56 (diff)
-rw-r--r--argv.go2
-rw-r--r--doDebian.go6
2 files changed, 4 insertions, 4 deletions
diff --git a/argv.go b/argv.go
index 1f3791c..69fe833 100644
--- a/argv.go
+++ b/argv.go
@@ -35,7 +35,7 @@ type args struct {
Force bool `arg:"--force" help:"rebuild everything"`
Recursive bool `arg:"--recursive" help:"go-clone --recursive"`
WITCOM bool `arg:"--witcom" help:"add the GPL header"`
- Max int32 `arg:"--max" help:"stop building after max builds"`
+ Max int32 `arg:"--max" defauult:"40" help:"stop building after max builds"`
}
type EmptyCmd struct {
diff --git a/doDebian.go b/doDebian.go
index 4ff6e53..ffe6f62 100644
--- a/doDebian.go
+++ b/doDebian.go
@@ -45,12 +45,12 @@ func buildDeb() {
}
if argv.Release {
- cmd = []string{"go-deb", "--release", "--no-gui", "--auto", "--forge", check.GetGoPath(), "--dir", outdir}
+ cmd = []string{"go-deb", "--release", "--forge", check.GetGoPath(), "--dir", outdir}
} else {
- cmd = []string{"go-deb", "--auto", "--no-gui", "--forge", check.GetGoPath(), "--dir", outdir}
+ cmd = []string{"go-deb", "--forge", check.GetGoPath(), "--dir", outdir}
}
if me.forge.Config.IsPrivate(check.GetGoPath()) {
- cmd = []string{"go-deb", "--auto", "--no-gui", "--forge", check.GetGoPath(), "--dir", outdir}
+ cmd = []string{"go-deb", "--forge", check.GetGoPath(), "--dir", outdir}
continue
}