|
|
@@ -26,7 +26,8 @@ public class ShellCompiler implements CodeCompiler {
|
|
|
for (String compileScript : compileCmds) {
|
|
|
result = shell.exec(appCompileHome, compileScript.split("\\s+"));
|
|
|
if (!result.isSuccess()) {
|
|
|
- throw new Exception(JsonConverter.objectToJson(result.getResult()));
|
|
|
+ throw new Exception(result.getResult());
|
|
|
+ //throw new Exception(JsonConverter.objectToJson(result.getResult()));
|
|
|
}
|
|
|
}
|
|
|
}
|