mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 00:50:25 +02:00
Improved prebuild/postbuild external program execution
This commit is contained in:
parent
90ba850618
commit
90626036c6
2 changed files with 30 additions and 19 deletions
|
@ -8784,8 +8784,11 @@ namespace IDE
|
|||
shellArgs.Append("/c ");
|
||||
shellArgs.Append("\"");
|
||||
IDEUtils.AppendWithOptionalQuotes(shellArgs, fileName);
|
||||
shellArgs.Append(" ");
|
||||
shellArgs.Append(args);
|
||||
if (!args.IsEmpty)
|
||||
{
|
||||
shellArgs.Append(" ");
|
||||
shellArgs.Append(args);
|
||||
}
|
||||
shellArgs.Append("\"");
|
||||
startInfo.SetFileName("cmd.exe");
|
||||
startInfo.SetArguments(shellArgs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue