Open fschwahn opened 6 years ago
@KrauseFx this is happening because of apple. Apple first released with name "10 Beta 6" so xcversion update gives us "9.4.1 (installed) 10 Beta 6" But later apple has changed it to "10 beta 6" and now if we give 10 beta 6, xcversion fails '[!] Version 10 beta 6 doesn't exist.'
Any idea how can we fix the issue?
i can't install 10 beta 6.
Got the same issue while trying to uninstall the beta so I debugged the whole thing. When you are calling xcversion list
it shows 10 beta 6
but if you are logging puts @installer.installed_versions.map { |bla| bla.version }
it will show you that you installed version 10.0
. Maybe show the real version in brackets behind the 10 beta 6
?
I had the same issue but was able to solve it by running:
$ xcversion select 10.0
I got the idea to do that from @olivereisenhut; thank you!
I installed 10 beta 6 using
xcversion install "10 beta 6"
, which worked and10 beta 6
was selected. Afterwards I switched back usingxcversion select 9.4.1
, which also worked. Then I tried selecting10 beta 6
again, and now it says10 beta 6
is not installed.