Skip to content

Commit

Permalink
Merge branch 'master' into chore/codebuild-old-image-in-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Mar 19, 2020
2 parents cfb76b5 + 3607e3e commit b22e932
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-codebuild/lib/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ export class Project extends ProjectBase {
}
if (this._secondaryArtifacts.length > 0) {
ret.push('A Project with a CodePipeline Source cannot have secondary artifacts. ' +
"Use the CodeBuild Pipeline Actions' `extraOutputs` property instead");
"Use the CodeBuild Pipeline Actions' `outputs` property instead");
}
}
return ret;
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-codepipeline-actions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ const testAction = new codepipeline_actions.CodeBuildAction({
When you want to have multiple inputs and/or outputs for a Project used in a
Pipeline, instead of using the `secondarySources` and `secondaryArtifacts`
properties of the `Project` class, you need to use the `extraInputs` and
`extraOutputs` properties of the CodeBuild CodePipeline
`outputs` properties of the CodeBuild CodePipeline
Actions. Example:

```ts
Expand Down

0 comments on commit b22e932

Please sign in to comment.