Skip to content

Commit 0353a30

Browse files
committed
Pinned SourceKit dependency until SPM build of 0.19.0 is fixed
1 parent 045c944 commit 0353a30

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Bridgecraft/GenerateCommand.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ struct GenerateCommand {
305305
arguments: compilerFlags)
306306
let result: [String: SourceKitRepresentable]
307307
do {
308-
result = try req.send()
308+
result = try req.failableSend()
309309
}
310310
catch {
311311
printError("failed to generate interface for \(preprocessedURL.path): \(error)")

Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "jpsim/SourceKitten"
1+
github "jpsim/SourceKitten" ~> 0.18.4
22
github "appsquickly/XcodeEditor" "master"
33
github "kylef/Commander"

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ let package = Package(
3535
],
3636
dependencies: [
3737
.package(url: "https://github.com/kylef/Commander.git", from: "0.8.0"),
38-
.package(url: "https://github.com/jpsim/SourceKitten.git", from: "0.18.0"),
38+
.package(url: "https://github.com/jpsim/SourceKitten.git", .exact("0.18.4")),
3939
.package(url: "https://github.com/appsquickly/XcodeEditor.git", .branch("master")),
4040
],
4141
targets: [

0 commit comments

Comments
 (0)