aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_ci.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:22:32 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:44 -0700
commit39d6688e028d9831ac7c8c914c80d150b2e10cb2 (patch)
tree5e87c4aa0f89b3148484f445bb7feec0fc003ef6 /toolsrc/src/commands_ci.cpp
parent1d8099fd8cdad4ebbd8297a474bc7c7c0768660e (diff)
downloadvcpkg-39d6688e028d9831ac7c8c914c80d150b2e10cb2.tar.gz
vcpkg-39d6688e028d9831ac7c8c914c80d150b2e10cb2.zip
install_plan_type -> InstallPlanType
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
-rw-r--r--toolsrc/src/commands_ci.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp
index f2a818f12..a25e5a469 100644
--- a/toolsrc/src/commands_ci.cpp
+++ b/toolsrc/src/commands_ci.cpp
@@ -11,7 +11,7 @@
namespace vcpkg::Commands::CI
{
using Dependencies::package_spec_with_install_plan;
- using Dependencies::install_plan_type;
+ using Dependencies::InstallPlanType;
using Build::BuildResult;
static std::vector<PackageSpec> load_all_package_specs(const fs::path& ports_directory, const Triplet& target_triplet)
@@ -55,12 +55,12 @@ namespace vcpkg::Commands::CI
try
{
- if (action.plan.plan_type == install_plan_type::ALREADY_INSTALLED)
+ if (action.plan.plan_type == InstallPlanType::ALREADY_INSTALLED)
{
results.back() = BuildResult::SUCCEEDED;
System::println(System::color::success, "Package %s is already installed", action.spec);
}
- else if (action.plan.plan_type == install_plan_type::BUILD_AND_INSTALL)
+ else if (action.plan.plan_type == InstallPlanType::BUILD_AND_INSTALL)
{
const BuildResult result = Commands::Build::build_package(action.plan.source_pgh.value_or_exit(VCPKG_LINE_INFO),
action.spec,
@@ -78,7 +78,7 @@ namespace vcpkg::Commands::CI
Install::install_package(paths, bpgh, &status_db);
System::println(System::color::success, "Package %s is installed", action.spec);
}
- else if (action.plan.plan_type == install_plan_type::INSTALL)
+ else if (action.plan.plan_type == InstallPlanType::INSTALL)
{
results.back() = BuildResult::SUCCEEDED;
Install::install_package(paths, action.plan.binary_pgh.value_or_exit(VCPKG_LINE_INFO), &status_db);