aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_edit.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-22 17:45:39 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-22 17:45:39 -0700
commit4bc91f1f269aa72dccd51a8f07134e4e66701793 (patch)
treedab6f286b6f07b47d73a8bb05b16db66fe1dadd1 /toolsrc/src/commands_edit.cpp
parent27bc6060203b5232bfb3b022b08ef66f64fb3ba9 (diff)
downloadvcpkg-4bc91f1f269aa72dccd51a8f07134e4e66701793.tar.gz
vcpkg-4bc91f1f269aa72dccd51a8f07134e4e66701793.zip
[commands] Use Checks::exit_fail/success/with_code()
Diffstat (limited to 'toolsrc/src/commands_edit.cpp')
-rw-r--r--toolsrc/src/commands_edit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_edit.cpp b/toolsrc/src/commands_edit.cpp
index 1252790af..d9cd627d2 100644
--- a/toolsrc/src/commands_edit.cpp
+++ b/toolsrc/src/commands_edit.cpp
@@ -72,6 +72,6 @@ namespace vcpkg::Commands::Edit
}
std::wstring cmdLine = Strings::wformat(LR"("%s" "%s" "%s" -n)", env_EDITOR, portpath.native(), (portpath / "portfile.cmake").native());
- exit(System::cmd_execute(cmdLine));
+ Checks::exit_with_code(VCPKG_LINE_INFO, System::cmd_execute(cmdLine));
}
}