fix: Add error handling for failed bundle

This commit is contained in:
1ambda 2017-03-31 23:06:08 +09:00
parent 212c73726f
commit 53145fa7ec

View file

@ -403,7 +403,11 @@ public class HeliumBundleFactory {
copyFrameworkModuleToInstallPath();
for (HeliumPackage pkg : pkgs) {
buildPackage(pkg, rebuild);
try {
buildPackage(pkg, rebuild);
} catch (IOException e) {
logger.error("Failed to build helium package: " + pkg.getArtifact(), e);
}
}
}