aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_portsdiff.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-10 17:03:47 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-10 17:04:29 -0800
commitea52c29e9af701c4a2e070f836bb1ffb7e092760 (patch)
treeb37d27fbffdcfa78646c1c07c7b70486428b9cd3 /toolsrc/src/commands_portsdiff.cpp
parentc59ac4e344fb96b0ab09189345519d7cf237577c (diff)
downloadvcpkg-ea52c29e9af701c4a2e070f836bb1ffb7e092760.tar.gz
vcpkg-ea52c29e9af701c4a2e070f836bb1ffb7e092760.zip
Use System::cmd_execute_clean() for `build`, `create`, `portsdiff`
Diffstat (limited to 'toolsrc/src/commands_portsdiff.cpp')
-rw-r--r--toolsrc/src/commands_portsdiff.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_portsdiff.cpp b/toolsrc/src/commands_portsdiff.cpp
index 065a35345..4d5a589f6 100644
--- a/toolsrc/src/commands_portsdiff.cpp
+++ b/toolsrc/src/commands_portsdiff.cpp
@@ -46,7 +46,7 @@ namespace vcpkg::Commands::PortsDiff
checkout_this_dir,
L".vcpkg-root",
git_exe.native());
- System::cmd_execute(cmd);
+ System::cmd_execute_clean(cmd);
const std::vector<SourceParagraph> source_paragraphs = Paragraphs::load_all_ports(temp_checkout_path / ports_dir_name_as_string);
const std::map<std::string, std::string> names_and_versions = Paragraphs::extract_port_names_and_versions(source_paragraphs);
fs::remove_all(temp_checkout_path);