From 6135d82647107d578e16657d671422e6824f6317 Mon Sep 17 00:00:00 2001 From: Tom Karpiniec Date: Wed, 14 Oct 2020 10:01:34 +1100 Subject: [PATCH] Fix out-of-date remarks and typos in comments --- config.sh | 6 ++---- dist.sh | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/config.sh b/config.sh index 544937e..fcf5e2d 100644 --- a/config.sh +++ b/config.sh @@ -1,9 +1,7 @@ # 1. Select the best branch, tag or commit hash from https://github.com/apple/llvm-project # The recommended approach is to use the tagged release that matches the Swift version -# returned by the command below (at this time running Xcode Version 11.3.1 (11C504)) +# returned by the command below: # $ xcrun -sdk iphoneos swiftc --version -# Apple Swift version 5.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15) -# Target: x86_64-apple-darwin19.3.0 LLVM_BRANCH="tags/swift-5.3-RELEASE" @@ -12,7 +10,7 @@ LLVM_BRANCH="tags/swift-5.3-RELEASE" RUST_BRANCH="tags/1.46.0" # 3. Select a name for the toolchain you want to install as. The toolchain will be installed -# under $HOME/.rust-ios-arm64/toolchain-$RUST_TOOLCHAIN +# under $HOME/.rustup/toolchains/rust-$RUST_TOOLCHAIN RUST_TOOLCHAIN="ios-arm64-1.46.0" diff --git a/dist.sh b/dist.sh index 07d0dad..4ca69cf 100755 --- a/dist.sh +++ b/dist.sh @@ -5,7 +5,7 @@ source config.sh # The built toolchain that we are going to package WORKING_DIR="$(pwd)/build" -# The directory which will added to the final zip file +# The directory which will be added to the final zip file DEST="$(pwd)/dist/rust-${RUST_TOOLCHAIN}" # The actual toolchain inside that, which will be installed to ~/.rustup/...