diff options
| author | Jeff Carr <[email protected]> | 2025-01-18 15:48:15 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-18 15:48:15 -0600 |
| commit | 96f2795bf3a96bdc9929ea1015590bb4695c4de0 (patch) | |
| tree | 8693faf14656ecf36010faface695fabf28ca215 | |
| parent | 6e7049f4a89a679a244bbef758e4abfe04143fac (diff) | |
updated go-deb syntaxv0.0.16
| -rw-r--r-- | buildDeb.go | 6 |
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 { |
