cmd/mkpkg: fix missing default value for --depends

Signed-off-by: Sylvain Rabot <sylvain@abstraction.fr>
This commit is contained in:
Sylvain Rabot 2020-04-08 08:48:14 +02:00 committed by Dave Anderson
parent 0f64d7f9cc
commit a279032998

View File

@ -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)