diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-10 17:03:47 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-10 17:04:29 -0800 |
| commit | ea52c29e9af701c4a2e070f836bb1ffb7e092760 (patch) | |
| tree | b37d27fbffdcfa78646c1c07c7b70486428b9cd3 /toolsrc/src/commands_build.cpp | |
| parent | c59ac4e344fb96b0ab09189345519d7cf237577c (diff) | |
| download | vcpkg-ea52c29e9af701c4a2e070f836bb1ffb7e092760.tar.gz vcpkg-ea52c29e9af701c4a2e070f836bb1ffb7e092760.zip | |
Use System::cmd_execute_clean() for `build`, `create`, `portsdiff`
Diffstat (limited to 'toolsrc/src/commands_build.cpp')
| -rw-r--r-- | toolsrc/src/commands_build.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_build.cpp b/toolsrc/src/commands_build.cpp index f2dabe25e..a47083cbd 100644 --- a/toolsrc/src/commands_build.cpp +++ b/toolsrc/src/commands_build.cpp @@ -60,7 +60,7 @@ namespace vcpkg::Commands::Build const ElapsedTime timer = ElapsedTime::createStarted(); - int return_code = System::cmd_execute(command); + int return_code = System::cmd_execute_clean(command); auto buildtimeus = timer.microseconds(); TrackMetric("buildtimeus-" + spec.toString(), buildtimeus); |
