From b937ec2bf461ec06bf601e854f694e86060eba59 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 22 Sep 2020 22:18:18 +0300 Subject: Use system git rather than bundled one for some operations on Windows --- bdep/git.ixx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bdep/git.ixx') diff --git a/bdep/git.ixx b/bdep/git.ixx index 8289544..2913cc6 100644 --- a/bdep/git.ixx +++ b/bdep/git.ixx @@ -6,11 +6,13 @@ namespace bdep template inline process start_git (const semantic_version& min_ver, + bool system, const dir_path& repo, I&& in, O&& out, E&& err, A&&... args) { return start_git (min_ver, + system, forward (in), forward (out), forward (err), "-C", repo, forward (args)...); @@ -25,11 +27,13 @@ namespace bdep template inline optional git_line (const semantic_version& min_ver, + bool system, const dir_path& repo, bool ie, A&&... args) { return git_line (min_ver, + system, ie, "-C", repo, forward (args)...); @@ -38,11 +42,13 @@ namespace bdep template inline optional git_string (const semantic_version& min_ver, + bool system, const dir_path& repo, bool ie, A&&... args) { return git_string (min_ver, + system, ie, "-C", repo, forward (args)...); -- cgit v1.1