diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-11-20 19:15:47 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-11-20 19:15:47 -0800 |
| commit | 786d53c002c044e9340e43070b393d69e14e78be (patch) | |
| tree | d2d05604063db8b9d6303be548942c5008963138 /toolsrc/src | |
| parent | 7c07ff813b0528fdd37f8835b99bc2e449fcf10c (diff) | |
| download | vcpkg-786d53c002c044e9340e43070b393d69e14e78be.tar.gz vcpkg-786d53c002c044e9340e43070b393d69e14e78be.zip | |
Fix `vcpkg integrate install` for unicode usernames
Diffstat (limited to 'toolsrc/src')
| -rw-r--r-- | toolsrc/src/vcpkg/commands.integrate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg/commands.integrate.cpp b/toolsrc/src/vcpkg/commands.integrate.cpp index 31b9ec722..f13a999fa 100644 --- a/toolsrc/src/vcpkg/commands.integrate.cpp +++ b/toolsrc/src/vcpkg/commands.integrate.cpp @@ -139,7 +139,7 @@ namespace vcpkg::Commands::Integrate static fs::path get_appdata_targets_path() { static const fs::path LOCAL_APP_DATA = - fs::path(System::get_environment_variable("LOCALAPPDATA").value_or_exit(VCPKG_LINE_INFO)); + fs::u8path(System::get_environment_variable("LOCALAPPDATA").value_or_exit(VCPKG_LINE_INFO)); return LOCAL_APP_DATA / "vcpkg" / "vcpkg.user.targets"; } #endif |
