Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
a70d8911
Unverified
Commit
a70d8911
authored
4 years ago
by
Mike McQuaid
Browse files
Options
Downloads
Patches
Plain Diff
os/mac/sdk: refactor for readability.
parent
fec6fc4b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/os/mac/sdk.rb
+4
-2
4 additions, 2 deletions
Library/Homebrew/os/mac/sdk.rb
with
4 additions
and
2 deletions
Library/Homebrew/os/mac/sdk.rb
+
4
−
2
View file @
a70d8911
...
...
@@ -52,6 +52,8 @@ module OS
rescue
NoSDKError
latest_sdk
end
return
if
sdk
.
blank?
# Accept an SDK for another OS version if it shares a major version
# with the current OS - for example, the 11.0 SDK on 11.1,
# or vice versa.
...
...
@@ -59,11 +61,11 @@ module OS
# or greater, given the way the versioning has changed.
# This shortcuts the below check, since we *do* accept an older version
# on macOS 11 or greater if the major version matches.
return
sdk
if
sdk
.
present?
&&
OS
::
Mac
.
version
>=
:big_sur
&&
sdk
.
version
.
major
==
OS
::
Mac
.
version
.
major
return
sdk
if
OS
::
Mac
.
version
>=
:big_sur
&&
sdk
.
version
.
major
==
OS
::
Mac
.
version
.
major
# On OSs lower than 11, or where the major versions don't match,
# only return an SDK older than the OS version if it was specifically requested
return
unless
v
||
(
sdk
.
present
?
&&
sdk
.
version
>=
OS
::
Mac
.
sdk_
version
)
return
if
v
.
blank
?
&&
sdk
.
version
<
OS
::
Mac
.
version
sdk
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment