updated go-deb syntax

This commit is contained in:
Jeff Carr 2025-01-18 15:48:15 -06:00
parent 6e7049f4a8
commit 96f2795bf3
1 changed files with 3 additions and 3 deletions

View File

@ -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 {