aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_integrate.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/commands_integrate.cpp
parentf2edc1256181fef986e7e23f5cd7fc1f169c12ed (diff)
downloadvcpkg-78ca952d76b351d5c0478dbcfc223c773c58996c.tar.gz
vcpkg-78ca952d76b351d5c0478dbcfc223c773c58996c.zip
Use System::cmd_executeClean()
Diffstat (limited to 'toolsrc/src/commands_integrate.cpp')
-rw-r--r--toolsrc/src/commands_integrate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_integrate.cpp b/toolsrc/src/commands_integrate.cpp
index 4ccd6d435..f98b9f77c 100644
--- a/toolsrc/src/commands_integrate.cpp
+++ b/toolsrc/src/commands_integrate.cpp
@@ -269,7 +269,7 @@ namespace vcpkg::Commands::Integrate
// Using all forward slashes for the command line
const std::wstring cmd_line = Strings::wformat(LR"("%s" pack -OutputDirectory "%s" "%s" > nul)", nuget_exe.native(), buildsystems_dir.native(), nuspec_file_path.native());
- const int exit_code = System::cmd_execute(cmd_line);
+ const int exit_code = System::cmd_execute_clean(cmd_line);
const fs::path nuget_package = buildsystems_dir / Strings::format("%s.%s.nupkg", nuget_id, nupkg_version);
Checks::check_exit(exit_code == 0 && fs::exists(nuget_package), "Error: NuGet package creation failed");