Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nateglims committed Aug 15, 2023
1 parent 0465df4 commit 2f6b049
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions demos-pipeline/lib/lib/constructs/source-repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export enum DistributionKind {
}

export interface SourceRepoProps extends cdk.StackProps {
/** The name of the CodeCommit Repository created. */
readonly repoName: string;
/** The type of distribution to see this repository with. */
/** The name of the CodeCommit Repository created. */
readonly repoName: string;
/** The type of distribution to see this repository with. */
readonly kind: DistributionKind;
}

Expand Down
4 changes: 2 additions & 2 deletions demos-pipeline/lib/lib/demo-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export class DemoPipelineStack extends cdk.Stack {
const dlFS = this.addFileSystem("Downloads", props.vpc, projectSg);
const tmpFS = this.addFileSystem("Temp", props.vpc, projectSg);

/** Create our CodePipeline Actions. */
/** Create our CodePipeline Actions. */

const sourceRepo = new SourceRepo(this, "SourceRepo", {
const sourceRepo = new SourceRepo(this, "SourceRepo", {
...props,
repoName: props.layerRepoName ?? `layer-repo-${this.stackName}`,
kind: props.distroKind ?? DistributionKind.Poky,
Expand Down

0 comments on commit 2f6b049

Please sign in to comment.