Skip to content

Commit

Permalink
fix(pipelines): Remove circular dependency
Browse files Browse the repository at this point in the history
fixes aws#18673
  • Loading branch information
LukvonStrom authored Jan 27, 2022
1 parent 2df75b2 commit 0548da2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export class CodeBuildFactory implements ICodePipelineActionFactory {

const project = new codebuild.PipelineProject(projectScope, this.constructId, {
projectName: this.props.projectName,
description: `Pipeline step ${options.pipeline.pipeline.pipelineName}/${stage.stageName}/${actionName}`,
description: `Pipeline step ${stage.stageName}/${actionName}`,
environment,
vpc: projectOptions.vpc,
subnetSelection: projectOptions.subnetSelection,
Expand Down Expand Up @@ -503,4 +503,4 @@ function filterBuildSpecCommands(buildSpec: codebuild.BuildSpec, osType: ec2.Ope
}
return [undefined, x];
}
}
}

0 comments on commit 0548da2

Please sign in to comment.