chore: include Xcode 15.2 in allowed versions list (#20021)
## Summary As reported by @ajayesivan and @seanstrom `Xcode 15.2` worked in their local environments and I then tried to use that version and found no issues with it. This commit adds `Xcode 15.2` to versions list in Xcode Wrapper `nix` derivation. ## Testing notes not needed. ## Platforms - iOS status: ready
This commit is contained in:
parent
c87e981902
commit
91c347f6f5
|
@ -57,7 +57,7 @@ in {
|
|||
yarn = super.yarn.override { nodejs = super.nodejs-18_x; };
|
||||
openjdk = super.openjdk11_headless;
|
||||
xcodeWrapper = callPackage ./pkgs/xcodeenv/compose-xcodewrapper.nix { } {
|
||||
versions = ["15.1"];
|
||||
versions = ["15.1" "15.2"];
|
||||
};
|
||||
go = super.go_1_20;
|
||||
clang = super.clang_15;
|
||||
|
|
Loading…
Reference in New Issue