aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-13 16:22:02 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-15 18:06:06 -0800
commit6824cc9264d245ebd1302c27eb714250c5f7ec13 (patch)
tree0c906ded3e50eaab02166a409db6454a113dc476 /toolsrc/src/commands_install.cpp
parent6e25bcf7cb1efd6de55f97aa978acd24d90af476 (diff)
downloadvcpkg-6824cc9264d245ebd1302c27eb714250c5f7ec13.tar.gz
vcpkg-6824cc9264d245ebd1302c27eb714250c5f7ec13.zip
Extract create_user_troubleshooting_message(). CI doesn't call it, interactive commands do
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
-rw-r--r--toolsrc/src/commands_install.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp
index 76b9e36e4..af068a4fb 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -218,6 +218,7 @@ namespace vcpkg::Commands::Install
if (result != Build::BuildResult::SUCCEEDED)
{
System::println(System::color::error, Build::create_error_message(result, action.spec.toString()));
+ 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();