diff options
| author | atkawa7 <atkawa7@yahoo.com> | 2017-06-15 19:52:03 -0700 |
|---|---|---|
| committer | atkawa7 <atkawa7@yahoo.com> | 2017-06-15 19:52:03 -0700 |
| commit | e46dd1fd551a17a2900e09f52b8abd02a3758f4f (patch) | |
| tree | 9c2671ad8a715eca875c1f4f02882a0811e3d54a /toolsrc/src/vcpkg_System.cpp | |
| parent | ce5ad1ffe1ed0c6351a09b01bc92a2ad258b8f19 (diff) | |
| parent | c966c3709e65b53580e66fe9d0cab1d4414b0472 (diff) | |
| download | vcpkg-e46dd1fd551a17a2900e09f52b8abd02a3758f4f.tar.gz vcpkg-e46dd1fd551a17a2900e09f52b8abd02a3758f4f.zip | |
Merge https://github.com/Microsoft/vcpkg
Diffstat (limited to 'toolsrc/src/vcpkg_System.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg_System.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolsrc/src/vcpkg_System.cpp b/toolsrc/src/vcpkg_System.cpp index 21329e003..c91c6be78 100644 --- a/toolsrc/src/vcpkg_System.cpp +++ b/toolsrc/src/vcpkg_System.cpp @@ -142,6 +142,7 @@ namespace vcpkg::System const std::wstring& actual_cmd_line = Strings::wformat(LR"###("%s 2>&1")###", cmd_line); + Debug::println("_wpopen(%s)", Strings::to_utf8(actual_cmd_line)); std::string output; char buf[1024]; auto pipe = _wpopen(actual_cmd_line.c_str(), L"r"); @@ -158,6 +159,7 @@ namespace vcpkg::System return {1, output}; } auto ec = _pclose(pipe); + Debug::println("_wpopen() returned %d", ec); return {ec, output}; } |
