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