summaryrefslogtreecommitdiff
path: root/control.write.go
diff options
context:
space:
mode:
Diffstat (limited to 'control.write.go')
-rw-r--r--control.write.go3
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"