summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-18 15:48:15 -0600
committerJeff Carr <[email protected]>2025-01-18 15:48:15 -0600
commit96f2795bf3a96bdc9929ea1015590bb4695c4de0 (patch)
tree8693faf14656ecf36010faface695fabf28ca215
parent6e7049f4a89a679a244bbef758e4abfe04143fac (diff)
updated go-deb syntaxv0.0.16
-rw-r--r--buildDeb.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildDeb.go b/buildDeb.go
index 2f6c1c2..2761eb7 100644
--- a/buildDeb.go
+++ b/buildDeb.go
@@ -39,12 +39,12 @@ func buildDeb() {
}
if argv.Release {
- cmd = []string{"go-deb", "--release", "--auto", "--repo", check.GetGoPath(), "--dir", outdir}
+ cmd = []string{"go-deb", "--release", "--auto", "--forge", check.GetGoPath(), "--dir", outdir}
} else {
- cmd = []string{"go-deb", "--auto", "--no-gui", "--repo", check.GetGoPath(), "--dir", outdir}
+ cmd = []string{"go-deb", "--auto", "--no-gui", "--forge", check.GetGoPath(), "--dir", outdir}
}
if me.forge.Config.IsPrivate(check.GetGoPath()) {
- cmd = []string{"go-deb", "--auto", "--repo", check.GetGoPath(), "--dir", outdir}
+ cmd = []string{"go-deb", "--auto", "--forge", check.GetGoPath(), "--dir", outdir}
}
log.Info("build cmd:", cmd)
if r := check.RunRealtime(cmd); r.Error != nil {