Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 177e475

Browse files
Missing call to Configure on FindExecTask
1 parent 0f8b2bf commit 177e475

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/GitHub.Api/Git/GitClient.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,10 @@ private async Task<NPath> LookForSystemGit()
143143
}
144144

145145
if (path == null)
146-
path = await new FindExecTask("git", taskManager.Token).StartAwait();
146+
{
147+
path = await new FindExecTask("git", taskManager.Token)
148+
.Configure(processManager).StartAwait();
149+
}
147150

148151
return path;
149152
}

0 commit comments

Comments
 (0)