Skip to content

Commit

Permalink
fix should not default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
rnag committed Feb 4, 2023
1 parent eadbe2f commit 465567c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ Possible header types:

## [Unreleased]

## v1.2.1 (2023-02-03)

### Bug Fixes

- Fix: `Settings.SKIP_BUILD` should not default to `true`

## v1.2.0 (2023-02-03)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class RustFunction extends Function {
if (Settings.SKIP_BUILD === undefined)
Settings.SKIP_BUILD = !asBool(
scope.node.tryGetContext('build'),
'F'
'T'
);

// Build with `cargo-lambda`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rust.aws-cdk-lambda",
"version": "1.2.0",
"version": "1.2.1",
"description": "A CDK (v2) Construct Library for AWS Lambda in Rust",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 465567c

Please sign in to comment.