diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-22 17:45:39 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-22 17:45:39 -0700 |
| commit | 4bc91f1f269aa72dccd51a8f07134e4e66701793 (patch) | |
| tree | dab6f286b6f07b47d73a8bb05b16db66fe1dadd1 /toolsrc/src/commands_remove.cpp | |
| parent | 27bc6060203b5232bfb3b022b08ef66f64fb3ba9 (diff) | |
| download | vcpkg-4bc91f1f269aa72dccd51a8f07134e4e66701793.tar.gz vcpkg-4bc91f1f269aa72dccd51a8f07134e4e66701793.zip | |
[commands] Use Checks::exit_fail/success/with_code()
Diffstat (limited to 'toolsrc/src/commands_remove.cpp')
| -rw-r--r-- | toolsrc/src/commands_remove.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_remove.cpp b/toolsrc/src/commands_remove.cpp index 7e4228496..e6677d740 100644 --- a/toolsrc/src/commands_remove.cpp +++ b/toolsrc/src/commands_remove.cpp @@ -189,7 +189,7 @@ namespace vcpkg::Commands::Remove System::println(System::color::warning, "Additional packages (*) need to be removed to complete this operation.\n" "If you are sure you want to remove them, run the command with the --recurse option"); - exit(EXIT_FAILURE); + Checks::exit_fail(VCPKG_LINE_INFO); } for (const package_spec_with_remove_plan& action : remove_plan) @@ -219,6 +219,6 @@ namespace vcpkg::Commands::Remove } } - exit(EXIT_SUCCESS); + Checks::exit_success(VCPKG_LINE_INFO); } } |
