Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Sources/XcodesKit/Models+Runtimes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ public struct InstalledRuntime: Decodable {

extension InstalledRuntime {
enum Kind: String, Decodable {
case diskImage = "Disk Image"
case bundled = "Bundled with Xcode"
case cryptexDiskImage = "Cryptex Disk Image"
case diskImage = "Disk Image"
case legacyDownload = "Legacy Download"
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodesKit/RuntimeInstaller.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class RuntimeInstaller {
if runtime.hasDuplicateVersion {
str += " (\(runtime.build))"
}
if runtime.state == .legacyDownload || runtime.state == .diskImage {
if runtime.state == .legacyDownload || runtime.state == .diskImage || runtime.state == .cryptexDiskImage {
str += " (Installed)"
} else if runtime.state == .bundled {
str += " (Bundled with selected Xcode)"
Expand Down