Update build script for a more targeted set of stuff to build for unity

This commit is contained in:
Chris Marsh
2017-12-01 13:47:04 -08:00
committed by Chris Marsh
parent 50ea4e61c6
commit be7fda7c50
2 changed files with 43 additions and 16 deletions

View File

@ -27,7 +27,7 @@ public class ScriptBatch
proc.StartInfo.EnvironmentVariables["PATH"] = newPath;
#endif
proc.StartInfo.FileName = "python";
proc.StartInfo.Arguments = "build.py";
proc.StartInfo.Arguments = "build.py for_unity";
proc.StartInfo.WorkingDirectory = "../..";
proc.Start();
proc.WaitForExit();