aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_installation.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-30 17:02:39 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-30 17:02:39 -0700
commit188eac680ba930c51943d4af34de58bbd325dcb1 (patch)
tree265aefd33d03cdc109fab1a015c0d885afb41b9a /toolsrc/src/commands_installation.cpp
parent51bc83c70e915892a658795f51bb3bb10360ee8d (diff)
downloadvcpkg-188eac680ba930c51943d4af34de58bbd325dcb1.tar.gz
vcpkg-188eac680ba930c51943d4af34de58bbd325dcb1.zip
Rename check_all_triplets() to check_triplets()
Diffstat (limited to 'toolsrc/src/commands_installation.cpp')
-rw-r--r--toolsrc/src/commands_installation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_installation.cpp b/toolsrc/src/commands_installation.cpp
index 8e66f9548..d6590fd0d 100644
--- a/toolsrc/src/commands_installation.cpp
+++ b/toolsrc/src/commands_installation.cpp
@@ -71,7 +71,7 @@ namespace vcpkg
StatusParagraphs status_db = database_load_check(paths);
std::vector<package_spec> specs = Input::check_and_get_package_specs(args.command_arguments, default_target_triplet, example.c_str());
- Input::check_all_triplets(specs, paths);
+ Input::check_triplets(specs, paths);
std::vector<package_spec> install_plan = Dependencies::create_dependency_ordered_install_plan(paths, specs, status_db);
Checks::check_exit(!install_plan.empty(), "Install plan cannot be empty");
std::string specs_string = to_string(install_plan[0]);