Prefer default Debug and Release configs

This commit is contained in:
John Flanagan 2020-01-14 21:40:12 -06:00
parent 480477a7e8
commit c52ed49a29

View File

@ -17,11 +17,11 @@ public class SchemeGenerator {
let pbxProj: PBXProj
var defaultDebugConfig: Config {
project.configs.first { $0.type == .debug }!
suitableConfig(for: .debug, in: project)
}
var defaultReleaseConfig: Config {
project.configs.first { $0.type == .release }!
suitableConfig(for: .release, in: project)
}
public init(project: Project, pbxProj: PBXProj) {