ProcStarter proc = new LocalLauncher(listener).launch()
.cmds(arguments)
.stdout(listener)
.pwd(appDir.getParent());
int exit = proc.join();
if (exit!=0)
throw new IOException("Deployment of "+bundle+" failed: "+exit);
return null;
} catch (InterruptedException e) {