This commit is contained in:
DarkFeather 2017-05-27 16:38:32 -05:00
parent 83d4717be2
commit f0482b7a22
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ namespace AniNIX.Shared {
proc.StartInfo.FileName = "/bin/bash"; proc.StartInfo.FileName = "/bin/bash";
proc.StartInfo.Arguments = String.Format("-c \'{0}\'",command); proc.StartInfo.Arguments = String.Format("-c \'{0}\'",command);
proc.StartInfo.UseShellExecute=false; proc.StartInfo.UseShellExecute=false;
ReportMessage.Log(Verbosity.Verbose,String.Format("{0} {1}",proc.StartInfo.FileName,proc.StartInfo.Arguments)); ReportMessage.Log(Verbosity.VeryVerbose,String.Format("{0} {1}",proc.StartInfo.FileName,proc.StartInfo.Arguments));
//Redirect input //Redirect input
proc.StartInfo.RedirectStandardOutput=true; proc.StartInfo.RedirectStandardOutput=true;