Skip to content

Commit

Permalink
remove useless path.resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
jogold committed Jun 10, 2020
1 parent 5c3dd47 commit bb91403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/core/lib/asset-staging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class AssetStaging extends Construct {

private bundle(options: BundlingOptions): string {
// Create temporary directory for bundling
const bundleDir = fs.mkdtempSync(path.resolve(path.join(FileSystem.tmpdir, 'cdk-asset-bundle-')));
const bundleDir = fs.mkdtempSync(path.join(FileSystem.tmpdir, 'cdk-asset-bundle-'));

// Always mount input and output dir
const volumes = [
Expand Down

0 comments on commit bb91403

Please sign in to comment.