private void createEmptyAppFolder(FilePath moduleRoot) throws IOException, InterruptedException {
FilePath appFolder = this.getAppFolder(moduleRoot);
if (appFolder.exists()) {
appFolder.deleteContents();
} else {
appFolder.mkdirs();
}
}
private FilePath getAppFolder(FilePath moduleRoot) {
return moduleRoot.child(this.finalName + ".app");