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 6bf8f67 commit 2bd49a5Copy full SHA for 2bd49a5
Plugins/AWSLambdaPackager/PluginUtils.swift
@@ -30,11 +30,11 @@ struct Utils {
30
print("\(executable.absoluteString) \(arguments.joined(separator: " "))")
31
}
32
33
- #if compiler(>=6.0) && compiler(<6.0.2) && os(Linux)
34
- let fd = dup(1)!
35
- #else
+// #if compiler(>=6.0) && compiler(<6.0.1) && os(Linux)
+// let fd = dup(1)!
+// #else
36
let fd = dup(1)
37
- #endif
+// #endif
38
let stdout = fdopen(fd, "rw")
39
defer { fclose(stdout) }
40
0 commit comments