File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,8 +129,9 @@ public struct InstalledRuntime: Decodable {
129129
130130extension InstalledRuntime {
131131 enum Kind : String , Decodable {
132- case diskImage = " Disk Image "
133132 case bundled = " Bundled with Xcode "
133+ case cryptexDiskImage = " Cryptex Disk Image "
134+ case diskImage = " Disk Image "
134135 case legacyDownload = " Legacy Download "
135136 }
136137
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public class RuntimeInstaller {
7878 if runtime. hasDuplicateVersion {
7979 str += " ( \( runtime. build) ) "
8080 }
81- if runtime. state == . legacyDownload || runtime. state == . diskImage {
81+ if runtime. state == . legacyDownload || runtime. state == . diskImage || runtime . state == . cryptexDiskImage {
8282 str += " (Installed) "
8383 } else if runtime. state == . bundled {
8484 str += " (Bundled with selected Xcode) "
You can’t perform that action at this time.
0 commit comments