@gradientedge/cdk-utils 6.10.1 → 6.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -214,7 +214,7 @@ class S3Manager {
|
|
|
214
214
|
throw `Folder unspecified for ${id}`;
|
|
215
215
|
}
|
|
216
216
|
folders.forEach(folder => {
|
|
217
|
-
new s3deploy.BucketDeployment(scope, `${
|
|
217
|
+
new s3deploy.BucketDeployment(scope, `${folder}`, {
|
|
218
218
|
destinationBucket: bucket,
|
|
219
219
|
destinationKeyPrefix: folder,
|
|
220
220
|
sources: [s3deploy.Source.data('README.md', `This is the ${folder} folder for ${id}`)],
|
package/package.json
CHANGED
|
@@ -214,7 +214,7 @@ export class S3Manager {
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
folders.forEach(folder => {
|
|
217
|
-
new s3deploy.BucketDeployment(scope, `${
|
|
217
|
+
new s3deploy.BucketDeployment(scope, `${folder}`, {
|
|
218
218
|
destinationBucket: bucket,
|
|
219
219
|
destinationKeyPrefix: folder,
|
|
220
220
|
sources: [s3deploy.Source.data('README.md', `This is the ${folder} folder for ${id}`)],
|