We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ab640 commit f8e173bCopy full SHA for f8e173b
index.js
@@ -137,7 +137,10 @@ class RustPlugin {
137
// we leverage the ability to declare a package artifact directly
138
// see https://serverless.com/framework/docs/providers/aws/guide/packaging/
139
// for more information
140
- const artifactPath = path.join(`target/lambda/${'dev' === profile ? 'debug' : 'release'}`, binary + ".zip");
+ const artifactPath = path.join(
141
+ `target/lambda/${"dev" === profile ? "debug" : "release"}`,
142
+ binary + ".zip"
143
+ );
144
func.package = func.package || {};
145
func.package.artifact = artifactPath;
146
0 commit comments