mirror of https://github.com/cirruslabs/tart.git
Fix SwiftFormat's URL/glob mishandling (#342)
* Fix SwiftFormat's URL/glob mishandling
* Revert "Fix SwiftFormat's URL/glob mishandling"
This reverts commit 4d1a4c7fb3.
* Use a fixed SwiftFormat
* Another SwiftFormat fix
* Update .cirrus.yml
Co-authored-by: Fedor Korotkov <fedor.korotkov@gmail.com>
This commit is contained in:
parent
4555dd5824
commit
e061d00afc
|
|
@ -1,3 +1,5 @@
|
|||
use_compute_credits: true
|
||||
|
||||
task:
|
||||
name: Test on Ventura
|
||||
alias: test
|
||||
|
|
|
|||
|
|
@ -102,10 +102,9 @@
|
|||
{
|
||||
"identity" : "swiftformat",
|
||||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/nicklockwood/SwiftFormat",
|
||||
"location" : "https://github.com/edigaryev/SwiftFormat",
|
||||
"state" : {
|
||||
"revision" : "7c7dd06554a5fc3f452f1d16a780a81a3be04bce",
|
||||
"version" : "0.50.4"
|
||||
"revision" : "46f34946546a29eeb6cb23ec44936b74fd379d63"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ let package = Package(
|
|||
.package(url: "https://github.com/sushichop/Puppy", from: "0.5.1"),
|
||||
.package(url: "https://github.com/antlr/antlr4", branch: "dev"),
|
||||
.package(url: "https://github.com/apple/swift-atomics.git", .upToNextMajor(from: "1.0.0")),
|
||||
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.50.4"),
|
||||
.package(url: "https://github.com/edigaryev/SwiftFormat", branch: "46f34946546a29eeb6cb23ec44936b74fd379d63"),
|
||||
],
|
||||
targets: [
|
||||
.executableTarget(name: "tart", dependencies: [
|
||||
|
|
|
|||
Loading…
Reference in New Issue