Merge pull request #218 from rust-lang/fix/build-release-sysroot

Fix build of release sysroot in test.sh
This commit is contained in:
antoyo 2022-09-14 09:22:50 -04:00 committed by GitHub
commit 1724042e22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ while [[ $# -gt 0 ]]; do
shift
;;
--release-sysroot)
sysroot_channel=release
sysroot_channel="--release"
shift
;;
--no-default-features)
@ -157,7 +157,7 @@ function mini_tests() {
function build_sysroot() {
echo "[BUILD] sysroot"
time ./build_sysroot/build_sysroot.sh
time ./build_sysroot/build_sysroot.sh $sysroot_channel
}
function std_tests() {