aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-27 15:45:56 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-27 15:45:56 -0800
commitc0ae9fee7e30cdd4898df22aecf5412b2d8f8ee6 (patch)
tree460db03fec88a2a9ed55a5f55a1d8b732c20d299 /toolsrc/src/commands_install.cpp
parent00737588cc6155776734c5a5261c9b08f9446eb4 (diff)
downloadvcpkg-c0ae9fee7e30cdd4898df22aecf5412b2d8f8ee6.tar.gz
vcpkg-c0ae9fee7e30cdd4898df22aecf5412b2d8f8ee6.zip
Move some functions from vcpkglib.h to Paragraphs.h
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
-rw-r--r--toolsrc/src/commands_install.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp
index 4ae311f83..283de8785 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -7,6 +7,7 @@
#include "vcpkg_System.h"
#include "vcpkg_Dependencies.h"
#include "vcpkg_Input.h"
+#include "PostBuildLint_BuildInfo.h"
namespace vcpkg::Commands::Install
{
@@ -224,7 +225,7 @@ namespace vcpkg::Commands::Install
System::println(Build::create_user_troubleshooting_message(action.spec));
exit(EXIT_FAILURE);
}
- const BinaryParagraph bpgh = try_load_cached_package(paths, action.spec).get_or_throw();
+ const BinaryParagraph bpgh = Paragraphs::try_load_cached_package(paths, action.spec).get_or_throw();
install_package(paths, bpgh, &status_db);
System::println(System::color::success, "Package %s is installed", action.spec);
}