This repository now uses main. (#109)

This commit is contained in:
Cory Benfield 2020-09-24 16:28:47 +01:00 committed by GitHub
parent 2233123ee7
commit 5258afd617
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 5 deletions

View File

@ -27,7 +27,7 @@ RUN mkdir -p $HOME/.tools
RUN echo 'export PATH="$HOME/.tools:$PATH"' >> $HOME/.profile
# script to allow mapping framepointers on linux (until part of the toolchain)
RUN wget -q https://raw.githubusercontent.com/apple/swift/master/utils/symbolicate-linux-fatal -O $HOME/.tools/symbolicate-linux-fatal
RUN wget -q https://raw.githubusercontent.com/apple/swift/main/utils/symbolicate-linux-fatal -O $HOME/.tools/symbolicate-linux-fatal
RUN chmod 755 $HOME/.tools/symbolicate-linux-fatal
# swiftformat (until part of the toolchain)

View File

@ -51,8 +51,8 @@ function usage() {
echo >&2
echo >&2 "Examples:"
echo >&2
echo >&2 "Check between master and tag 1.2.0 of swift-nio-extras:"
echo >&2 " $0 https://github.com/apple/swift-nio-extras master 1.2.0"
echo >&2 "Check between main and tag 1.2.0 of swift-nio-extras:"
echo >&2 " $0 https://github.com/apple/swift-nio-extras main 1.2.0"
echo >&2
echo >&2 "Check between HEAD and commit 64cf63d7 using the provided toolchain:"
echo >&2 " xcrun --toolchain org.swift.5120190702a $0 ../some-local-repo HEAD 64cf63d7"

View File

@ -28,8 +28,6 @@ include FileUtils
#
# This ruby script will auto generate LinuxMain.swift and the +XCTest.swift extension files for Swift Package Manager on Linux platforms.
#
# See https://github.com/apple/swift-corelibs-xctest/blob/master/Documentation/Linux.md
#
def header(fileName)
string = <<-eos
//===----------------------------------------------------------------------===//