bugfix: don't block macOS 11+

This commit is contained in:
AJ ONeal 2021-09-08 03:20:15 +00:00
parent 60f206373c
commit 79d4d239ad
1 changed files with 28 additions and 28 deletions

View File

@ -56,12 +56,10 @@ if [ "$(uname | grep -i 'Darwin')" ]; then
exit 1 exit 1
fi fi
# OS X (10) and macOS (11) should be supported # Mavericks+ works for all current macOS versions
OS='mavericks'
if [ "$OSX_MAJOR" -gt 11 ]; then
echo "WARNING: macOS 12+ may or may not be supported"
fi
if [[ "$OSX_MAJOR" -eq 10 ]]; then
# #
# Minor # Minor
# #
@ -84,10 +82,12 @@ if [ "$(uname | grep -i 'Darwin')" ]; then
if [ "$OSX_MINOR" -eq 8 ]; then if [ "$OSX_MINOR" -eq 8 ]; then
OS='mountain' OS='mountain'
fi fi
fi
# Mavericks, Yosemite # OS X (10) and macOS (11) should be supported
if [ "$OSX_MINOR" -ge 9 ]; then
OS='mavericks' if [ "$OSX_MAJOR" -gt 11 ]; then
echo "WARNING: macOS 12+ may or may not be supported"
fi fi
if [ -n "$(sysctl hw | grep 64bit | grep ': 1')" ]; then if [ -n "$(sysctl hw | grep 64bit | grep ': 1')" ]; then