Skip to content

Commit

Permalink
[INTERNAL] Extension handling: Fix isBeingProcessed check
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomByte committed Apr 11, 2018
1 parent a4609d4 commit e64cde6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/projectPreprocessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class ProjectPreprocessor {

async dependencyLookahead(parent, dependencies) {
return Promise.all(dependencies.map(async (project) => {
if (this.isBeingProcessed(project, project)) {
if (this.isBeingProcessed(parent, project)) {
return;
}
log.verbose(`Processing dependency lookahead for ${parent.id}: ${project.id}`);
Expand Down

0 comments on commit e64cde6

Please sign in to comment.