Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix where version is unpatched minor (eg 14.1) #97

Merged
merged 1 commit into from
Nov 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/newinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ n8l::sys::platform() {
osx)
case $__release in
# XXX bash 3.2 on osx does not support case fall-through
10.9.* | 10.1?.*)
10.9.* | 10.1?.* | 10.1?)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I presume this can be simplified to 10.9.* | 10.1*) but this should be doubled checked to work on OSX's antiquated bash 3.2 + patches.

__platform=10.9
__target_cc=clang-802.0.42
;;
Expand Down