Skip to content

Commit

Permalink
fix(infra): correct dist path location (#3390)
Browse files Browse the repository at this point in the history
### Motivation

A path was typoed causing the cdk deployment to fail

### Modifications

corrected typo in path

### Verification

ran a `cdk synth` locally to validate path
  • Loading branch information
blacha authored Jan 16, 2025
1 parent fe59bae commit 46f8fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/_infra/src/analytics/edge.analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Construct } from 'constructs';
import { getConfig } from '../config.js';

const CodePath = '../lambda-analytics/dist';
const CodePathV2 = '../lambda-analytics-cloudfront/dist';
const CodePathV2 = '../lambda-analytic-cloudfront/dist';

export interface EdgeAnalyticsProps extends StackProps {
distributionId: string;
Expand Down

0 comments on commit 46f8fb8

Please sign in to comment.