summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorYuki Okushi <yuki.okushi@huawei.com>2021-10-13 10:07:16 +0900
committerYuki Okushi <yuki.okushi@huawei.com>2021-10-13 10:07:16 +0900
commit0b8387e89cff3500d6c936a3fcb55118e5126e2d (patch)
tree26e063df2a7fc95f056a8c682f09dcd463f28dbc /ci
parentacc47b21be7fcd25d5351333787d81903642bbdf (diff)
downloadrust-libc-0b8387e89cff3500d6c936a3fcb55118e5126e2d.tar.gz
Fix variable name
Diffstat (limited to 'ci')
-rw-r--r--ci/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/build.sh b/ci/build.sh
index 51ce8bc348..92103b57c9 100644
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -265,7 +265,7 @@ if [ "${RUST}" = "nightly" ] && [ "${OS}" = "linux" ]; then
done
fi
-RUST_OSX_NO_CORE_TARGETS="\
+RUST_APPLE_NO_CORE_TARGETS="\
armv7-apple-ios \
armv7s-apple-ios \
i686-apple-darwin \
@@ -273,7 +273,7 @@ i386-apple-ios \
"
if [ "${RUST}" = "nightly" ] && [ "${OS}" = "macos" ]; then
- for TARGET in $RUST_OSX_NO_CORE_TARGETS; do
+ for TARGET in $RUST_APPLE_NO_CORE_TARGETS; do
if echo "$TARGET" | grep -q "$FILTER"; then
test_target build "$TARGET" 1
fi