This commit is contained in:
@@ -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())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user