aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_installation.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-29 17:17:45 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-29 17:17:45 -0800
commit74f69ade187dbe091cb00ace4d40ef9d20a3e416 (patch)
tree3ed1cea0cbedc516f7f8f523bb49473ceeb15698 /toolsrc/src/commands_installation.cpp
parentaf120041b68f2b9221bdd3cf0047f7e20705aa5a (diff)
downloadvcpkg-74f69ade187dbe091cb00ace4d40ef9d20a3e416.tar.gz
vcpkg-74f69ade187dbe091cb00ace4d40ef9d20a3e416.zip
Introduce PostBuildLint namespace
Diffstat (limited to 'toolsrc/src/commands_installation.cpp')
-rw-r--r--toolsrc/src/commands_installation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_installation.cpp b/toolsrc/src/commands_installation.cpp
index f7af2ef7c..93335220d 100644
--- a/toolsrc/src/commands_installation.cpp
+++ b/toolsrc/src/commands_installation.cpp
@@ -59,7 +59,7 @@ namespace vcpkg
exit(EXIT_FAILURE);
}
- perform_all_checks(spec, paths);
+ PostBuildLint::perform_all_checks(spec, paths);
create_binary_control_file(paths, source_paragraph, target_triplet);
@@ -140,7 +140,7 @@ namespace vcpkg
const std::unordered_set<std::string> options = args.check_and_get_optional_command_arguments({OPTION_CHECKS_ONLY});
if (options.find(OPTION_CHECKS_ONLY) != options.end())
{
- perform_all_checks(spec, paths);
+ PostBuildLint::perform_all_checks(spec, paths);
exit(EXIT_SUCCESS);
}