Chris McGee

Results 199 comments of Chris McGee

I'm not sure what form this should take or if this should be part of bazel itself instead of just the stardoc tool. For example, if rules themselves all had...

I've run into this problem recently with this URL: https://api.github.com/repos/apple/swift/releases?per_page=100&page=1 A workaround is to create a local shared HTTP client. Here is an example: ``` private class HTTPClientWrapper { fileprivate...

This has been implemented in #121

I think we should close this as the installer is now written in Swift.

@Gingeh the shell scripts has been replaced by the `swiftly init` subcommand. Before next release we will be removing the shell script entirely in favour of guidance on the swift.org...

#150 might address this.

Here are some additional thoughts on this enhancement. First, the version selector can be optional, and then the toolchain that is in use would be chosen, where the used toolchain...

This is already available in the tests, so this might involve moving that functionality into the SwiftlyCore, surfacing it through documented environment variables and command-line options. This might be a...

This is actually coming out of the box from the swift-argument-parser library that we use. Do we need to keep this open? Maybe this is a placeholder for writing some...

@Nobody1707 and @wangzhizhou, does manually adding the swift.org keys help to work around the problem? ``` curl --silent --retry 3 --location --fail https://swift.org/keys/all-keys.asc | gpg --import - ``` This is...