diff options
| author | Jeff Carr <[email protected]> | 2025-10-08 02:27:16 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-08 02:27:16 -0500 |
| commit | 4ac3c0cae90ebca61ad753df3b944a9da363dd3a (patch) | |
| tree | f1e922cfdf5f6b2cd875413db3b4ce73f9b5973d /doBuild.debian.go | |
| parent | 8eae35d606be59175adb41262deec13d3f5ed5a1 (diff) | |
better output
Diffstat (limited to 'doBuild.debian.go')
| -rw-r--r-- | doBuild.debian.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doBuild.debian.go b/doBuild.debian.go index e252074..d037859 100644 --- a/doBuild.debian.go +++ b/doBuild.debian.go @@ -46,7 +46,6 @@ func doBuildDeb() error { found.Append(check) } - printPackagingTable(found) found.ActualSort() printPackagingTable(found) // me.forge.PrintTable(found) @@ -126,12 +125,15 @@ func buildDeb(repo *gitpb.Repo) error { cmd = append(cmd, "--verbose") } + debname := me.forge.Config.DebName(repo.GetNamespace()) + debname += "." + me.forge.GetPackageVersion(repo) + ".deb" if argv.DryRun { - log.Info("RUN:", repo.FullPath, cmd) + log.Info("RUN:", repo.FullPath, debname) + log.Info("RUN:", cmd) return nil } - log.Info("Building .deb", me.forge.GetPackageVersion(repo), cmd) + log.Info("Building", debname, cmd) var err error if _, err = repo.RunVerboseOnError(cmd); err != nil { log.Info(repo.FullPath, cmd) |
