We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 946e04f commit 222df5bCopy full SHA for 222df5b
Assets/Plugins/CandyCoded.GitStatus/Scripts/CustomEditor/Git.cs
@@ -18,18 +18,18 @@ public static class Git
18
public static string GitPath => "/usr/local/bin/git";
19
#endif
20
21
- private static Task<Process> GenerateProcess(string path, string arguments)
+ private static Process GenerateProcess(string path, string arguments)
22
{
23
24
- return Task.Run(() => Process.Start(new ProcessStartInfo
+ return Process.Start(new ProcessStartInfo
25
26
FileName = path,
27
Arguments = arguments,
28
UseShellExecute = false,
29
RedirectStandardOutput = true,
30
RedirectStandardError = true,
31
CreateNoWindow = true
32
- }));
+ });
33
34
}
35
0 commit comments