From 4ac3c0cae90ebca61ad753df3b944a9da363dd3a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 8 Oct 2025 02:27:16 -0500 Subject: better output --- doBuild.debian.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'doBuild.debian.go') 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) -- cgit v1.2.3