fix(config): add /etc/cheat config path

Add `/etc/cheat/conf.yml` to default config paths. See #568 for context.
This commit is contained in:
Chris Lane
2020-07-09 18:28:10 -04:00
parent 278a5d9154
commit c4dcfd5da0
3 changed files with 4 additions and 2 deletions

View File

@@ -39,6 +39,7 @@ func TestValidatePathsNix(t *testing.T) {
"/home/bar/cheat/conf.yml",
"/home/foo/.config/cheat/conf.yml",
"/home/foo/.cheat/conf.yml",
"/etc/cheat/conf.yml",
}
// assert that output matches expectations
@@ -81,6 +82,7 @@ func TestValidatePathsNixNoXDG(t *testing.T) {
want := []string{
"/home/foo/.config/cheat/conf.yml",
"/home/foo/.cheat/conf.yml",
"/etc/cheat/conf.yml",
}
// assert that output matches expectations