This commit is contained in:
2020-05-19 21:08:06 +00:00
parent 76ca670b6c
commit 4e879aaa64
2 changed files with 8 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ namespace AyaNova.Util
public static string RunWindows(string cmd, string arguments)
private static string RunWindows(string cmd, string arguments)
{
using (var process = new Process())
@@ -52,7 +52,7 @@ namespace AyaNova.Util
}
}
public static string RunLinuxBash(string cmd, string arguments)
private static string RunLinuxBash(string cmd, string arguments)
{
var escapedArgs = $"{cmd} {arguments}".Replace("\"", "\\\"");
@@ -75,7 +75,7 @@ namespace AyaNova.Util
}
public static string RunOSX(string cmd, string arguments)
private static string RunOSX(string cmd, string arguments)
{
using (var process = new Process())
{