mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
avoid terrible error
there was already a better error hidden!
This commit is contained in:
@@ -82,7 +82,13 @@ compiler.eachUsedUnibuild = function (
|
||||
while (!_.isEmpty(usesToProcess)) {
|
||||
var use = usesToProcess.shift();
|
||||
|
||||
var unibuild = packageLoader.getUnibuild(use["package"], arch);
|
||||
var unibuild = packageLoader.getUnibuild(use.package, arch);
|
||||
if (!unibuild) {
|
||||
// The package exists but there's no unibuild for us. A buildmessage has
|
||||
// already been issued. Recover by skipping.
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
if (_.has(processedBuildId, unibuild.id))
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user