From acd9e1a0a5e0159847a31ec58c839076f51ae15f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Zamanillo?= Date: Mon, 21 Sep 2020 21:32:07 +0200 Subject: [PATCH] Fixed incorrect total sources count on list sources --- pkg/runner/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/runner/options.go b/pkg/runner/options.go index 8b1e803..2984e11 100644 --- a/pkg/runner/options.go +++ b/pkg/runner/options.go @@ -127,7 +127,7 @@ func hasStdin() bool { } func listSources(options *Options) { - gologger.Infof("Current list of available sources. [%d]\n", len(options.YAMLConfig.Sources)) + gologger.Infof("Current list of available sources. [%d]\n", len(options.YAMLConfig.AllSources)) gologger.Infof("Sources marked with an * needs key or token in order to work.\n") gologger.Infof("You can modify %s to configure your keys / tokens.\n\n", options.ConfigFile)