Skip to content

Update links for repositories moved from apple to swiftlang #1048

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ endif()
find_package(cmark-gfm CONFIG)
if(NOT cmark-gfm_FOUND)
FetchContent_Declare(cmark-gfm
GIT_REPOSITORY https://github.com/apple/swift-cmark
GIT_REPOSITORY https://github.com/swiftlang/swift-cmark
GIT_TAG gfm)
list(APPEND _SF_VENDOR_DEPENDENCIES cmark-gfm)
endif()
Expand All @@ -60,7 +60,7 @@ if(NOT SwiftMarkdown_FOUND)
# TODO(compnerd) we need a latest version for now as we need the CMake support
# which is untagged.
FetchContent_Declare(Markdown
GIT_REPOSITORY https://github.com/apple/swift-markdown
GIT_REPOSITORY https://github.com/swiftlang/swift-markdown
GIT_TAG main)
list(APPEND _SF_VENDOR_DEPENDENCIES Markdown)
endif()
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ var dependencies: [Package.Dependency] {
} else {
return [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2"),
.package(url: "https://github.com/apple/swift-markdown.git", from: "0.2.0"),
.package(url: "https://github.com/swiftlang/swift-markdown.git", from: "0.2.0"),
.package(url: "https://github.com/swiftlang/swift-syntax.git", branch: "main"),
]
}
Expand Down