aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2019-07-06 13:29:46 -0700
committerGitHub <noreply@github.com>2019-07-06 13:29:46 -0700
commit2b8e225b2ea83a3138d4b7345f104c1bd9a129dd (patch)
tree531f1a62e608c7751b87a121da7507da13f1a476 /toolsrc/include
parent17b5841bc36a13f950af8b052335b2ea56b05db5 (diff)
downloadvcpkg-2b8e225b2ea83a3138d4b7345f104c1bd9a129dd.tar.gz
vcpkg-2b8e225b2ea83a3138d4b7345f104c1bd9a129dd.zip
[vcpkg] Fix powershell font corruption bug (#7094)
* [vcpkg] Fix font corruption bug on Windows by downloading Powershell Core * [vcpkg] Rename subtool to powershell-core * [vcpkg] Add missing includes to project files
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/base/system.process.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg/base/system.process.h b/toolsrc/include/vcpkg/base/system.process.h
index e409ff950..14e2eb109 100644
--- a/toolsrc/include/vcpkg/base/system.process.h
+++ b/toolsrc/include/vcpkg/base/system.process.h
@@ -31,7 +31,8 @@ namespace vcpkg::System
};
int cmd_execute_clean(const ZStringView cmd_line,
- const std::unordered_map<std::string, std::string>& extra_env = {});
+ const std::unordered_map<std::string, std::string>& extra_env = {},
+ const std::string& prepend_to_path = {});
int cmd_execute(const ZStringView cmd_line);