File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Assets/Plugins/CandyCoded.GitStatus/Scripts/CustomEditor Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public static class Git
18
18
public static string GitPath => "/usr/local/bin/git" ;
19
19
#endif
20
20
21
- private static Task < Process > GenerateProcessAsync ( string path , string arguments )
21
+ private static Task < Process > GenerateProcess ( string path , string arguments )
22
22
{
23
23
24
24
return Task . Run ( ( ) => Process . Start ( new ProcessStartInfo
@@ -33,6 +33,13 @@ private static Task<Process> GenerateProcessAsync(string path, string arguments)
33
33
34
34
}
35
35
36
+ private static Task < Process > GenerateProcessAsync ( string path , string arguments )
37
+ {
38
+
39
+ return Task . Run ( ( ) => GenerateProcess ( path , arguments ) ) ;
40
+
41
+ }
42
+
36
43
public static async Task < string > Branch ( )
37
44
{
38
45
You can’t perform that action at this time.
0 commit comments