diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 16:30:11 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:46 -0700 |
| commit | 898edccbdcec9345c549945187195b75a9f49212 (patch) | |
| tree | a685eab6c4867b195afede41e4368f61ee46f9c6 /toolsrc/src/commands_portsdiff.cpp | |
| parent | 3f76b9e53d48e34960bb5947bbbb880ac806281b (diff) | |
| download | vcpkg-898edccbdcec9345c549945187195b75a9f49212.tar.gz vcpkg-898edccbdcec9345c549945187195b75a9f49212.zip | |
exit_code_and_output -> ExitCodeAndOutput
Diffstat (limited to 'toolsrc/src/commands_portsdiff.cpp')
| -rw-r--r-- | toolsrc/src/commands_portsdiff.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_portsdiff.cpp b/toolsrc/src/commands_portsdiff.cpp index 249d48616..22c7ecfda 100644 --- a/toolsrc/src/commands_portsdiff.cpp +++ b/toolsrc/src/commands_portsdiff.cpp @@ -96,7 +96,7 @@ namespace vcpkg::Commands::PortsDiff static const std::string VALID_COMMIT_OUTPUT = "commit\n"; const std::wstring cmd = Strings::wformat(LR"("%s" cat-file -t %s)", git_exe.native(), git_commit_id); - const System::exit_code_and_output output = System::cmd_execute_and_capture_output(cmd); + const System::ExitCodeAndOutput output = System::cmd_execute_and_capture_output(cmd); Checks::check_exit(VCPKG_LINE_INFO, output.output == VALID_COMMIT_OUTPUT, "Invalid commit id %s", Strings::utf16_to_utf8(git_commit_id)); } |
