Adds -clean to dm compile options

This commit is contained in:
Cyberboss
2017-06-21 09:39:18 -04:00
parent e88dce5b7f
commit 18a0e26dd5
+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();