From 1cd7bfc752ddc84a640d1871c6172b38be429b2f Mon Sep 17 00:00:00 2001 From: Nicolas Peugnet Date: Sun, 5 Jan 2025 15:05:53 +0100 Subject: [PATCH] Apply wrap-and-sort -at by default The Go team currently recommends the flags --wrap-always --trailing-comma [1] which translates to -at, so dh-make-golang should use this flag combination by default. [1] https://go-team.pages.debian.net/workflow-changes.html#wf-2017-11-debian-control --- make.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.go b/make.go index 9f48c07..0962897 100644 --- a/make.go +++ b/make.go @@ -827,7 +827,7 @@ func execMake(args []string, usage func()) { fs.StringVar(&wrapAndSort, "wrap-and-sort", - "a", + "at", "Set how the various multi-line fields in debian/control are formatted.\n"+ "Valid values are \"a\", \"at\" and \"ast\", see wrap-and-sort(1) man page\n"+ "for more information.")