From faa1093deffa9ba48637d5c571220760c51946dd Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Thu, 8 Feb 2018 22:45:01 +0100 Subject: [PATCH] Fix: Struct tags broken Signed-off-by: Knut Ahlers --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 522e5f3..3f76d54 100644 --- a/main.go +++ b/main.go @@ -21,7 +21,7 @@ import ( var ( cfg = struct { - Blacklist []string `flag;"blacklist,b" default:"" description:"Repos to ignore even when matched through filters"` + Blacklist []string `flag:"blacklist,b" default:"" description:"Repos to ignore even when matched through filters"` ExpandMatches bool `flag:"expand-matches" default:"false" description:"Replace matched repos with their full version"` Filters []string `flag:"filter,f" default:"" description:"Filters to match the repos against"` GithubToken string `flag:"token" default:"" env:"GITHUB_TOKEN" description:"Token to access Github API"`