Don't fail when there is no application source batch.

This commit is contained in:
Ben Newman
2016-01-19 15:03:16 -05:00
parent f0a84785db
commit f3a005f384

View File

@@ -675,7 +675,10 @@ export class PackageSourceBatch {
}
pkgSourceBatches.forEach(scan);
scan(appSourceBatch);
if (appSourceBatch) {
scan(appSourceBatch);
}
return map;
}