From a279032998cbc2fcfa737b185e4e14041c4e0195 Mon Sep 17 00:00:00 2001 From: Sylvain Rabot Date: Wed, 8 Apr 2020 08:48:14 +0200 Subject: [PATCH] cmd/mkpkg: fix missing default value for --depends Signed-off-by: Sylvain Rabot --- cmd/mkpkg/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mkpkg/main.go b/cmd/mkpkg/main.go index dc3c436da..c9db293f4 100644 --- a/cmd/mkpkg/main.go +++ b/cmd/mkpkg/main.go @@ -42,7 +42,7 @@ func main() { prerm := getopt.StringLong("prerm", 0, "", "debian prerm script path") postrm := getopt.StringLong("postrm", 0, "", "debian postrm script path") replaces := getopt.StringLong("replaces", 0, "", "package which this package replaces, if any") - depends := getopt.StringLong("depends", 0, "comma-separated list of packages this package depends on") + depends := getopt.StringLong("depends", 0, "", "comma-separated list of packages this package depends on") getopt.Parse() filesMap, err := parseFiles(*files)