Don't use hidden directory in user config path

This commit is contained in:
Chris Roberts 2021-07-20 15:53:04 -07:00 committed by Paul Hinze
parent 609930c8bf
commit e06ff39ebf
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -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
}