From e06ff39ebf6367cc7500b5da16a1f7d7f69c567d Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 20 Jul 2021 15:53:04 -0700 Subject: [PATCH] Don't use hidden directory in user config path --- internal/plugin/discover.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/plugin/discover.go b/internal/plugin/discover.go index 0b150e26a..7c66fa83e 100644 --- a/internal/plugin/discover.go +++ b/internal/plugin/discover.go @@ -93,7 +93,7 @@ func DefaultPaths(pwd string) ([]string, error) { pwd, filepath.Join(pwd, ".vagrant", "plugins"), filepath.Dir(xdgPath), - filepath.Join(hd, ".config", ".vagrant", "plugins"), + filepath.Join(hd, ".config", "vagrant", "plugins"), }, nil }