}
if (args[i].startsWith("\"") && args[i].endsWith("\"")) {
args[i] = args[i].substring(1, args[i].length() - 1);
}
}
new EmbeddedCommandRunner().execute(args, in, out, err);
} catch (Throwable t) {
t.printStackTrace();
}
if (callback != null) {
callback.onExit(0);