Use ~/.vcpkg/config instead of ~/vcpkg/config

This commit is contained in:
Alexander Karatarakis 2018-04-17 13:45:01 -07:00
parent fbf5fe8229
commit c3062a7b8d

View File

@ -35,7 +35,7 @@ namespace vcpkg
return get_localappdata() / "vcpkg" / "config";
#else
auto maybe_home = System::get_environment_variable("HOME");
return fs::path(maybe_home.value_or("/var")) / "vcpkg" / "config";
return fs::path(maybe_home.value_or("/var")) / ".vcpkg" / "config";
#endif
}