aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-07 15:20:04 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-07 15:45:14 -0700
commit4839ea89441b54124c0300ebb53e64f8aa8a07e1 (patch)
treefee7d728a92cf12acef4e330546e0f5d8811e7ec /toolsrc/src/commands_install.cpp
parenta405d60fe3f8b5a4500da8707ec6d5983e18e0e5 (diff)
downloadvcpkg-4839ea89441b54124c0300ebb53e64f8aa8a07e1.tar.gz
vcpkg-4839ea89441b54124c0300ebb53e64f8aa8a07e1.zip
Add UNKNOWN case
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 2a2202099..35e4e7fb9 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -311,6 +311,7 @@ namespace vcpkg::Commands::Install
install_package(paths, action.plan.binary_pgh.value_or_exit(VCPKG_LINE_INFO), &status_db);
System::println(System::Color::success, "Installing package %s... done", action.spec);
break;
+ case InstallPlanType::UNKNOWN:
default:
Checks::unreachable(VCPKG_LINE_INFO);
}