Skip to content

Commit 23a63df

Browse files
committed
Disable problematic traits
1 parent 7e553fa commit 23a63df

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Package.resolved

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:6.0
1+
// swift-tools-version:6.2
22

33
import PackageDescription
44

@@ -31,7 +31,7 @@ let package = Package(
3131
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.7.2"),
3232
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.8.2"),
3333
.package(url: "https://github.com/apple/swift-system", from: "1.4.2"),
34-
.package(url: "https://github.com/swiftlang/swift-subprocess", revision: "0.2.1"),
34+
.package(url: "https://github.com/swiftlang/swift-subprocess", exact: "0.2.1", traits: []),
3535
// This dependency provides the correct version of the formatter so that you can run `swift run swiftformat Package.swift Plugins/ Sources/ Tests/`
3636
.package(url: "https://github.com/nicklockwood/SwiftFormat", exact: "0.49.18"),
3737
],

Sources/SwiftlyCore/Platform+Process.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ extension Platform {
107107
.inherit.updating(
108108
.init(
109109
uniqueKeysWithValues: env.map {
110-
(Subprocess.Environment.Key(stringLiteral: $0.key), Optional($0.value))
110+
(Subprocess.Environment.Key(stringLiteral: $0.key), $0.value)
111111
}
112112
)
113113
)
@@ -168,7 +168,7 @@ extension Platform {
168168
.inherit.updating(
169169
.init(
170170
uniqueKeysWithValues: env.map {
171-
(Subprocess.Environment.Key(stringLiteral: $0.key), Optional($0.value))
171+
(Subprocess.Environment.Key(stringLiteral: $0.key), $0.value)
172172
}
173173
)
174174
)

0 commit comments

Comments
 (0)