Fix ISO compatibility check

This commit is contained in:
Nindi Gill 2023-06-09 20:47:44 +10:00
parent 46bf6206ff
commit b5d2e31e96
No known key found for this signature in database
GPG key ID: FF9A7FD590D4F4B1

View file

@ -71,6 +71,11 @@ struct InstallerExportView: View {
var exports: [InstallerExportType] = []
if !isoCompatible && !exportApplication && !exportDiskImage && exportISO && !exportPackage {
exportApplication = true
exportISO = false
}
if exportApplication {
exports.append(.application)
}