Skip to content

Commit a79a497

Browse files
committed
Fixed python application package zip name
1 parent 08c2bd0 commit a79a497

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infrastructure-cdk/lib/application-pipeline-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class ApplicationPipelineStack extends Stack {
3333
appName: APPLICATION_NAME,
3434
deployBucket: artifactBucket,
3535
repositoryName: APPLICATION_NAME,
36-
projectRoot: SOURCE_CODE_ZIP.replace(".zip", "") + "/" + APPLICATION_NAME
36+
projectRoot: SOURCE_CODE_ZIP.replace(".zip", "") + "/" + APPLICATION_NAME + "-python"
3737
});
3838

3939
new CfnOutput(this, 'ArtifactBucketName', {

0 commit comments

Comments
 (0)