Skip to content

Commit 340a394

Browse files
committed
Make compilation on Swift 5.5 potentially possible
1 parent 76f64c1 commit 340a394

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

Package.resolved

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

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let needsGNUSourceExports = true
2121
#endif
2222

2323
let isXcode = ProcessInfo.processInfo.environment["__CFBundleIdentifier"]?.lowercased().contains("xcode") ?? false
24-
let executableName = if isXcode {"ProcessInvocationBridge"} else {"swift-process-invocation-bridge"}
24+
let executableName = isXcode ? "ProcessInvocationBridge" : "swift-process-invocation-bridge"
2525

2626

2727
let package = Package(
@@ -37,9 +37,9 @@ let package = Package(
3737
res.append(.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2"))
3838
res.append(.package(url: "https://github.com/apple/swift-log.git", from: "1.5.2"))
3939
res.append(.package(url: "https://github.com/Frizlab/UnwrapOrThrow.git", from: "1.0.1"))
40-
res.append(.package(url: "https://github.com/xcode-actions/clt-logger.git", from: "0.5.1"))
41-
res.append(.package(url: "https://github.com/xcode-actions/stream-reader.git", from: "3.5.0"))
42-
res.append(.package(url: "https://github.com/xcode-actions/swift-signal-handling.git", from: "1.1.1"))
40+
res.append(.package(url: "https://github.com/xcode-actions/clt-logger.git", from: "1.0.0-beta.4"))
41+
res.append(.package(url: "https://github.com/xcode-actions/stream-reader.git", from: "3.6.0"))
42+
res.append(.package(url: "https://github.com/xcode-actions/swift-signal-handling.git", .upToNextMinor(from: "1.1.2")))
4343
#if !canImport(System)
4444
res.append(.package(url: "https://github.com/apple/swift-system.git", from: "1.0.0"))
4545
#endif

0 commit comments

Comments
 (0)