aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/metrics.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-10 17:33:23 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-10 17:33:23 -0800
commit78ca952d76b351d5c0478dbcfc223c773c58996c (patch)
treee27fb70e5813eb14432d2fe28b0b871198300fb6 /toolsrc/src/metrics.cpp
parentf2edc1256181fef986e7e23f5cd7fc1f169c12ed (diff)
downloadvcpkg-78ca952d76b351d5c0478dbcfc223c773c58996c.tar.gz
vcpkg-78ca952d76b351d5c0478dbcfc223c773c58996c.zip
Use System::cmd_executeClean()
Diffstat (limited to 'toolsrc/src/metrics.cpp')
-rw-r--r--toolsrc/src/metrics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/metrics.cpp b/toolsrc/src/metrics.cpp
index b8e469f6e..d0e20fe2d 100644
--- a/toolsrc/src/metrics.cpp
+++ b/toolsrc/src/metrics.cpp
@@ -417,6 +417,6 @@ true
std::ofstream(vcpkg_metrics_txt_path) << payload;
const std::wstring cmdLine = Strings::wformat(L"start %s %s", temp_folder_path_exe.native(), vcpkg_metrics_txt_path.native());
- System::cmd_execute(cmdLine);
+ System::cmd_execute_clean(cmdLine);
}
}