You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The install script for genesis is reporting that my mac is older than 10.13 while my mac is actually 11.2. I took a look into the script it seems like the version check against macos only checks whether the minor version is less than 13:
if check_cmd sw_vers; then
if [ "$(sw_vers -productVersion | cut -d. -f2)" -lt 13 ]; then
# Older than 10.13
echo "Warning: Detected OS X platform older than 10.13"
exit 1
Another thing is that after I manually changed this part to bypass the version check, the script still didn't work successfully. It just hang there without any error message and stuck for an hour now. Is it because mac 11.2 is not compatible?
To Reproduce
Steps to reproduce the behavior:
Find a mac with 11.*
Try the install script
See error
Desktop (please complete the following information):
OS: [MacOs]
Version [11.2]
The text was updated successfully, but these errors were encountered:
Describe the bug
The install script for genesis is reporting that my mac is older than 10.13 while my mac is actually 11.2. I took a look into the script it seems like the version check against macos only checks whether the minor version is less than 13:
Another thing is that after I manually changed this part to bypass the version check, the script still didn't work successfully. It just hang there without any error message and stuck for an hour now. Is it because mac 11.2 is not compatible?
To Reproduce
Steps to reproduce the behavior:
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: