Skip to content

Commit a56609d

Browse files
committed
[INTERNAL] Extension handling: Fix isBeingProcessed check
1 parent 935c654 commit a56609d

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
@@ -99,7 +99,7 @@ class ProjectPreprocessor {
9999

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

0 commit comments

Comments
 (0)