aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_integrate.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-05-04 14:58:18 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-05-04 14:58:18 -0700
commita66b066d4584d6b92d249d71b9348344efc78d5e (patch)
treefb4cdc1c934311eaf2da0e3952a33e85f9df7784 /toolsrc/src/commands_integrate.cpp
parenta94efe662b0537a606d40bdd4b986b5b2ea246e2 (diff)
downloadvcpkg-a66b066d4584d6b92d249d71b9348344efc78d5e.tar.gz
vcpkg-a66b066d4584d6b92d249d71b9348344efc78d5e.zip
get_environmental_variable() -> get_environment_variable()
Diffstat (limited to 'toolsrc/src/commands_integrate.cpp')
-rw-r--r--toolsrc/src/commands_integrate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_integrate.cpp b/toolsrc/src/commands_integrate.cpp
index 89f18c664..c5942f9fc 100644
--- a/toolsrc/src/commands_integrate.cpp
+++ b/toolsrc/src/commands_integrate.cpp
@@ -141,7 +141,7 @@ namespace vcpkg::Commands::Integrate
static fs::path get_appdata_targets_path()
{
static const fs::path local_app_data =
- fs::path(System::get_environmental_variable(L"LOCALAPPDATA").value_or_exit(VCPKG_LINE_INFO));
+ fs::path(System::get_environment_variable(L"LOCALAPPDATA").value_or_exit(VCPKG_LINE_INFO));
return local_app_data / "vcpkg" / "vcpkg.user.targets";
}