Merge pull request #69 from Cyberboss/CommitOnChangelog

Adds -clean to dm compile options
This commit is contained in:
Jordan Brown
2017-06-22 13:09:12 -04:00
committed by GitHub
+1 -1
View File
@@ -365,7 +365,7 @@ namespace TGServerService
using (var DM = new Process()) //will kill the process if the thread is terminated
{
DM.StartInfo.FileName = ByondDirectory + "/bin/dm.exe";
DM.StartInfo.Arguments = dmePath;
DM.StartInfo.Arguments = String.Format("-clean {0}", dmePath);
DM.StartInfo.RedirectStandardOutput = true;
DM.StartInfo.UseShellExecute = false;
var OutputList = new StringBuilder();