Try and make sure that 'rebuild' exits on error

This commit is contained in:
Joshua Granick
2014-12-27 11:20:27 -08:00
parent 287b94e6dd
commit 02f7413443

View File

@@ -111,7 +111,13 @@ class CPPHelper {
}
ProcessHelper.runCommand (path, "haxelib", args);
var code = ProcessHelper.runCommand (path, "haxelib", args);
if (code != 0) {
Sys.exit (code);
}
}