install: check for --options and delay loading of status_db

This commit is contained in:
Alexander Karatarakis 2017-02-17 15:22:49 -08:00
parent 71b985dd03
commit e99e577dc9

View File

@ -187,10 +187,11 @@ namespace vcpkg::Commands::Install
{
static const std::string example = Commands::Help::create_example_string("install zlib zlib:x64-windows curl boost");
args.check_min_arg_count(1, example);
StatusParagraphs status_db = database_load_check(paths);
std::vector<package_spec> specs = Input::check_and_get_package_specs(args.command_arguments, default_target_triplet, example);
Input::check_triplets(specs, paths);
args.check_and_get_optional_command_arguments({});
StatusParagraphs status_db = database_load_check(paths);
std::vector<package_spec_with_install_plan> install_plan = Dependencies::create_install_plan(paths, specs, status_db);
Checks::check_exit(!install_plan.empty(), "Install plan cannot be empty");