Skip to content
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

Simplify obtaining of swift sources #31

Merged
merged 13 commits into from
Dec 11, 2015
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,7 @@ compiler for C++14 support and create a symlink:

### Getting Sources for Swift and Related Projects

git clone git@github.com:apple/swift.git swift
git clone git@github.com:apple/swift-llvm.git llvm
git clone git@github.com:apple/swift-clang.git clang
git clone git@github.com:apple/swift-lldb.git lldb
git clone git@github.com:apple/swift-cmark.git cmark
git clone git@github.com:apple/swift-llbuild.git llbuild
git clone git@github.com:apple/swift-package-manager.git swiftpm
git clone git@github.com:apple/swift-corelibs-xctest.git
git clone git@github.com:apple/swift-corelibs-foundation.git
curl -sSL https://raw.githubusercontent.com/apple/swift/master/utils/clone_resources.sh | bash


[CMake](http://cmake.org) is the core infrastructure used to configure builds of
Expand Down
11 changes: 11 additions & 0 deletions utils/clone_resources.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/env bash

git clone git@github.com:apple/swift.git swift
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the Swift team goes ahead with this approach, please can #29 be changed here too.

git clone git@github.com:apple/swift-llvm.git llvm
git clone git@github.com:apple/swift-clang.git clang
git clone git@github.com:apple/swift-lldb.git lldb
git clone git@github.com:apple/swift-cmark.git cmark
git clone git@github.com:apple/swift-llbuild.git llbuild
git clone git@github.com:apple/swift-package-manager.git swiftpm
git clone git@github.com:apple/swift-corelibs-xctest.git
git clone git@github.com:apple/swift-corelibs-foundation.git