Skip to content

Commit 54ad7d3

Browse files
committed
Fix error in Plugin.swift
1 parent 435033e commit 54ad7d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/AWSLambdaPackager/Plugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ struct AWSLambdaPackager: CommandPlugin {
273273
}
274274

275275
let fd = dup(1)
276-
let stdout = fdopen(fd, "rw")!
276+
let stdout = fdopen(fd, "rw")
277277
defer { fclose(stdout) }
278278

279279
// We need to use an unsafe transfer here to get the fd into our Sendable closure.

0 commit comments

Comments
 (0)