Skip to content

Commit

Permalink
[rush-lib] Fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichon-msft committed Jan 19, 2022
1 parent 25e4eba commit da85e80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/rush-lib/src/api/RushProjectConfiguration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,8 @@ export class RushProjectConfiguration {
const overlappingPathAnalyzer: OverlappingPathAnalyzer<string> =
new OverlappingPathAnalyzer<string>();

for (const operationName of command.phases) {
for (const phase of command.phases) {
const operationName: string = phase.name;
const operationSettings: IOperationSettings | undefined =
operationSettingsByOperationName.get(operationName);
if (operationSettings) {
Expand Down

0 comments on commit da85e80

Please sign in to comment.