Skip to content

Commit

Permalink
Disabled validation of per-package triplet
Browse files Browse the repository at this point in the history
  • Loading branch information
albertziegenhagel committed Sep 23, 2016
1 parent 3495f09 commit 082eb36
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions toolsrc/src/vcpkg_cmd_arguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,6 @@ namespace vcpkg
expected<package_spec> current_spec = vcpkg::parse(command_argument, default_target_triplet);
if (auto spec = current_spec.get())
{
if(!spec->target_triplet.validate(paths))
{
System::println(System::color::error, "Error: invalid triplet %s for package %s", spec->target_triplet.value, spec->name);
TrackProperty("error", "invalid triplet: " + spec->target_triplet.value);
help_topic_valid_triplet(paths);
exit(EXIT_FAILURE);
}
specs.push_back(std::move(*spec));
}
else
Expand Down

0 comments on commit 082eb36

Please sign in to comment.