Skip to content

Commit 703e91c

Browse files
use "cmark" instead of "swift-cmark-gfm" in the toolchain build
rdar://90461704
1 parent b1d9a3a commit 703e91c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import PackageDescription
1515
import class Foundation.ProcessInfo
1616

17-
let cmarkPackageName = ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil ? "swift-cmark" : "swift-cmark-gfm"
17+
let cmarkPackageName = ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil ? "swift-cmark" : "cmark"
1818

1919
let package = Package(
2020
name: "swift-markdown",
@@ -57,7 +57,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
5757
} else {
5858
// Building in the Swift.org CI system, so rely on local versions of dependencies.
5959
package.dependencies += [
60-
.package(path: "../swift-cmark-gfm"),
60+
.package(path: "../cmark"),
6161
.package(path: "../swift-argument-parser"),
6262
]
6363
}

[email protected]

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import PackageDescription
1515
import class Foundation.ProcessInfo
1616

17-
let cmarkPackageName = ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil ? "swift-cmark" : "swift-cmark-gfm"
17+
let cmarkPackageName = ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil ? "swift-cmark" : "cmark"
1818

1919
let package = Package(
2020
name: "swift-markdown",
@@ -64,7 +64,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
6464
} else {
6565
// Building in the Swift.org CI system, so rely on local versions of dependencies.
6666
package.dependencies += [
67-
.package(path: "../swift-cmark-gfm"),
67+
.package(path: "../cmark"),
6868
.package(path: "../swift-argument-parser"),
6969
]
7070
}

0 commit comments

Comments
 (0)