diff options
| author | Jeff Carr <[email protected]> | 2025-10-04 23:59:35 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-04 23:59:35 -0500 |
| commit | 25f7d2bdbb8d3045ded9abd6bc94462e845046fa (patch) | |
| tree | 16b45027ee65d4e0caf3ca27f533744cff9a2f20 | |
| parent | a89b40c03b3b4c1ab18b913aff4f2d3d38ce0fbd (diff) | |
minorv0.22.152
| -rw-r--r-- | control.write.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/control.write.go b/control.write.go index b2c31ba..3c0ef7c 100644 --- a/control.write.go +++ b/control.write.go @@ -20,7 +20,8 @@ func writeDebianControlFile(repo *gitpb.Repo) bool { return false } fmt.Fprintln(cf, "Package:", repo.Control["Package"]) // c.Package.String()) - fmt.Fprintln(cf, "Source:", repo.Control["Source"]) // c.Source.String()) + // never do Source as it has something to do with where aptly puts the files + // fmt.Fprintln(cf, "Source:", repo.Control["Source"]) // c.Source.String()) fmt.Fprintln(cf, "Version:", repo.Control["Version"]) if repo.Control["Architecture"] == "" { repo.Control["Architecture"] = "amd64" |
