diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-17 15:22:49 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-17 15:22:49 -0800 |
| commit | e99e577dc937bfca09ccb2afff92c1bb1be457bf (patch) | |
| tree | de95405b3f86545f53a082ae49f1a0a40718f52b /toolsrc/src | |
| parent | 71b985dd032c37fd88010b70fd03dc4a5cfa9cf9 (diff) | |
| download | vcpkg-e99e577dc937bfca09ccb2afff92c1bb1be457bf.tar.gz vcpkg-e99e577dc937bfca09ccb2afff92c1bb1be457bf.zip | |
`install`: check for --options and delay loading of status_db
Diffstat (limited to 'toolsrc/src')
| -rw-r--r-- | toolsrc/src/commands_install.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp index 9757e171d..4ae311f83 100644 --- a/toolsrc/src/commands_install.cpp +++ b/toolsrc/src/commands_install.cpp @@ -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"); |
