From 4b9cca31299c1c213bfb88cbbab8918db88115aa Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 3 Dec 2019 16:36:35 -0800 Subject: [PATCH] Change where the config file is located --- context/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context/context.go b/context/context.go index 7e165299d..a400b4b3e 100644 --- a/context/context.go +++ b/context/context.go @@ -40,7 +40,7 @@ type fsContext struct { } func (c *fsContext) configFile() string { - dir, _ := homedir.Expand("~/.config/gh") + dir, _ := homedir.Expand("~/.config/gh/config.yml") return dir }