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
if [[ ${osvers_major}-eq 10 ]] && [[ ${osvers_minor}-ge 10 ]];then
As-is this won't work on Big Sur now that it has decided to be 11.0 and not 10.16. We've updated the script internally to work with the following modification: if [[ "$osvers_major" -eq 11 ]] || [[ "$osvers_major" -eq 10 && "$osvers_minor" -ge 10 ]]; then
I don't seem to be able to make a pull request for this but in case others are still using this script it might be helpful to update it. I think there are a few others that will need something similar.
Cheers!
The text was updated successfully, but these errors were encountered:
Heya, here's an example:
rtrouton_scripts/rtrouton_scripts/Casper_Scripts/open_website_via_self_service/open_website_via_self_service.sh
Line 52 in 2e0d119
As-is this won't work on Big Sur now that it has decided to be 11.0 and not 10.16. We've updated the script internally to work with the following modification:
if [[ "$osvers_major" -eq 11 ]] || [[ "$osvers_major" -eq 10 && "$osvers_minor" -ge 10 ]]; then
I don't seem to be able to make a pull request for this but in case others are still using this script it might be helpful to update it. I think there are a few others that will need something similar.
Cheers!
The text was updated successfully, but these errors were encountered: