Skip to content

Commit 54c3ab9

Browse files
committed
Fix cmark checkout path
git@github links only work if you've got write permissions to the repository
1 parent 8d9ef80 commit 54c3ab9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: utils/build-script-impl

+2-2
Original file line numberDiff line numberDiff line change
@@ -833,8 +833,8 @@ FOUNDATION_SOURCE_DIR="$WORKSPACE/swift-corelibs-foundation"
833833

834834
if [[ ! -d $CMARK_SOURCE_DIR ]]; then
835835
echo "$CMARK_SOURCE_DIR not found. Attempting to clone ..."
836-
git clone git@github.com/apple/swift-cmark.git "$CMARK_SOURCE_DIR" || \
837-
(echo "Couldn't clone cmark. Please check README.md and visit https:/github.com/apple/swift-cmark for details." && \
836+
git clone https://github.com/apple/swift-cmark.git "$CMARK_SOURCE_DIR" || \
837+
(echo "Couldn't clone cmark. Please check README.md and visit https://github.com/apple/swift-cmark for details." && \
838838
exit 1)
839839
fi
840840

0 commit comments

Comments
 (0)