Fix variable name

This commit is contained in:
Yuki Okushi 2021-10-13 10:07:16 +09:00
parent acc47b21be
commit 0b8387e89c
No known key found for this signature in database
GPG key ID: DABA5B072961C18A

View file

@ -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