aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
-rw-r--r--toolsrc/src/commands_install.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp
index dabce44f6..e5c5dd013 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -214,14 +214,14 @@ namespace vcpkg::Commands::Install
}
else if (action.plan.type == install_plan_type::BUILD_AND_INSTALL)
{
- Commands::Build::build_package(*action.plan.spgh, action.spec, paths, paths.port_dir(action.spec));
+ Commands::Build::build_package(*action.plan.source_pgh, action.spec, paths, paths.port_dir(action.spec));
const BinaryParagraph bpgh = 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);
}
else if (action.plan.type == install_plan_type::INSTALL)
{
- install_package(paths, *action.plan.bpgh, status_db);
+ install_package(paths, *action.plan.binary_pgh, status_db);
System::println(System::color::success, "Package %s is installed", action.spec);
}
else