Switch the command-line-tools dependency to be branch based not revision.

This commit is contained in:
Stefan Ceriu
2026-02-26 14:59:39 +02:00
committed by Stefan Ceriu
parent 1d08e86982
commit 4e99059952
2 changed files with 4 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
{
"originHash" : "de3b5dfdd30df13c55deff097064bd887e3cc34e6259ed01bd9d29091b158262",
"originHash" : "14d9f7d61d174bcc8bb501ca7bfd906a95e437203049c1756fd88e793c873bac",
"pins" : [
{
"identity" : "swift-argument-parser",
@@ -15,7 +15,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/element-hq/swift-command-line-tools.git",
"state" : {
"revision" : "e5eaab1558ef664e6cd80493f64259381670fb3a"
"branch" : "main",
"revision" : "c085ad85c27970e4bba2dd1180c2a53ab77022ba"
}
},
{

View File

@@ -13,7 +13,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMinor(from: "1.7.0")),
.package(url: "https://github.com/element-hq/swift-command-line-tools.git", revision: "e5eaab1558ef664e6cd80493f64259381670fb3a"),
.package(url: "https://github.com/element-hq/swift-command-line-tools.git", branch: "main"),
// .package(path: "../../../swift-command-line-tools"),
.package(url: "https://github.com/swiftlang/swift-subprocess", .upToNextMinor(from: "0.3.0")),
.package(url: "https://github.com/jpsim/Yams", .upToNextMinor(from: "6.2.1")),