Skip to content

Commit e64cde6

Browse files
committed
[INTERNAL] Extension handling: Fix isBeingProcessed check
1 parent a4609d4 commit e64cde6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/projectPreprocessor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class ProjectPreprocessor {
9898

9999
async dependencyLookahead(parent, dependencies) {
100100
return Promise.all(dependencies.map(async (project) => {
101-
if (this.isBeingProcessed(project, project)) {
101+
if (this.isBeingProcessed(parent, project)) {
102102
return;
103103
}
104104
log.verbose(`Processing dependency lookahead for ${parent.id}: ${project.id}`);

0 commit comments

Comments
 (0)