diff options
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
| -rw-r--r-- | toolsrc/src/commands_install.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp index 0a7b27825..60cf5da0e 100644 --- a/toolsrc/src/commands_install.cpp +++ b/toolsrc/src/commands_install.cpp @@ -165,7 +165,7 @@ namespace vcpkg::Commands::Install StatusParagraph spgh; spgh.package = binary_paragraph; spgh.want = want_t::install; - spgh.state = InstallState::half_installed; + spgh.state = InstallState::HALF_INSTALLED; for (auto&& dep : spgh.package.depends) { if (status_db->find_installed(dep, spgh.package.spec.target_triplet()) == status_db->end()) @@ -178,7 +178,7 @@ namespace vcpkg::Commands::Install install_and_write_listfile(paths, spgh.package); - spgh.state = InstallState::installed; + spgh.state = InstallState::INSTALLED; write_update(paths, spgh); status_db->insert(std::make_unique<StatusParagraph>(spgh)); } |
