Skip to content

Commit f8e173b

Browse files
committed
fmt
1 parent 16ab640 commit f8e173b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,10 @@ class RustPlugin {
137137
// we leverage the ability to declare a package artifact directly
138138
// see https://serverless.com/framework/docs/providers/aws/guide/packaging/
139139
// for more information
140-
const artifactPath = path.join(`target/lambda/${'dev' === profile ? 'debug' : 'release'}`, binary + ".zip");
140+
const artifactPath = path.join(
141+
`target/lambda/${"dev" === profile ? "debug" : "release"}`,
142+
binary + ".zip"
143+
);
141144
func.package = func.package || {};
142145
func.package.artifact = artifactPath;
143146

0 commit comments

Comments
 (0)