-
Notifications
You must be signed in to change notification settings - Fork 245
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
Fixes xcode version finder #382
Conversation
It was finding a beta version despite the release one being already available (11.4 beta instead of 11.4). Now it tries to match the name first and when nothing matches it falls back to matching version. Resolves xcpretty#381 Solution proposed here: xcpretty#381 (comment).
This probably fixes this (closed) issue as well: #374 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding tests!
Any updates on this PR? |
Any update? 👀 Can't wait for release. |
You guys probably know that - but just in case - you can use the following in your gem 'xcode-install' , git: 'https://github.com/robertwijas/xcode-install', branch: 'fix/find-xcode-version' |
I'll be merging this because it looks like the e2e tests are failing for unrelated reasons.
@Kesin11 @milch looks like both of you were involved in adding these failing e2e tests in #365. Can you look into how to fix them or otherwise disable them? |
Hey everyone, I just released 2.6.4 which includes this fix: https://rubygems.org/gems/xcode-install/versions/2.6.4 Let me know if there are any issues 👍🏼 |
when this change will be marked as release so gem update catches it? |
It's already available as the |
Just try to update your gem. I have no idea why there is no linked Github Release. |
I have updated. It catches v2.6.4 but problem exists as in #381
where |
I have removed all 11.4 versions and tried to install only GM but it installs 11.4 b3 every time |
@nysander |
After upgrading to xcode-install 2.6.4 I was able to The confusion for me was that I typed |
|
It was finding a beta version despite the release one being already available (11.4 beta instead of 11.4).
Now it tries to match the name first and when nothing matches it falls back to matching version.
Resolves #381
Solution proposed here: #381 (comment).