Skip to content

Commit

Permalink
fix(aws-codebuild): typo in BuildEnvironment "priviledged" -> "privil…
Browse files Browse the repository at this point in the history
…eged (#734)

BREAKING CHANGE: fix typo "priviledged" -> "privileged
  • Loading branch information
akiym authored and Elad Ben-Israel committed Sep 18, 2018
1 parent 25c9fa0 commit 72fec36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-codebuild/lib/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ export class Project extends ProjectRef {
return {
type: this.buildImage.type,
image: this.buildImage.imageId,
privilegedMode: env.priviledged || false,
privilegedMode: env.privileged || false,
computeType: env.computeType || this.buildImage.defaultComputeType,
environmentVariables: !hasEnvironmentVars ? undefined : Object.keys(vars).map(name => ({
name,
Expand Down Expand Up @@ -634,7 +634,7 @@ export interface BuildEnvironment {
*
* @default false
*/
priviledged?: boolean;
privileged?: boolean;

/**
* The environment variables that your builds can use.
Expand Down

0 comments on commit 72fec36

Please sign in to comment.