From 0e3ea92834c0dc9cb20dac398290c3bf2cc32039 Mon Sep 17 00:00:00 2001 From: KeisukeYamashita <19yamashita15@gmail.com> Date: Mon, 7 Oct 2019 17:53:10 +0900 Subject: [PATCH] :wrench: fix github org --- providers/github/github.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/github/github.go b/providers/github/github.go index 243240b..351e8f6 100644 --- a/providers/github/github.go +++ b/providers/github/github.go @@ -38,7 +38,7 @@ func (p *Provider) addProductPath(product string) { switch product { case "dashboard": var org string - if org = p.Ctx.String("organization"); org != "" { + if org = p.Ctx.String("org"); org != "" { p.join(fmt.Sprintf("orgs/%s/dashboard", org)) return }