File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -93,16 +93,17 @@ extension SettingsPresetFile {
93
93
return group
94
94
}
95
95
let relativePath = " SettingPresets/ \( path) .yml "
96
- var settingsPath = Path ( Bundle . main. bundlePath) + " ../share/xcodegen/ \( relativePath) "
97
-
98
- if !settingsPath. exists {
99
- // maybe running locally
100
- settingsPath = Path ( #file) . parent ( ) . parent ( ) . parent ( ) + relativePath
101
- }
102
- guard settingsPath. exists else {
96
+ let possibleSettingsPaths : [ Path ] = [
97
+ Path ( relativePath) ,
98
+ Path ( Bundle . main. bundlePath) + relativePath,
99
+ Path ( Bundle . main. bundlePath) + " ../share/xcodegen/ \( relativePath) " ,
100
+ Path ( #file) . parent ( ) . parent ( ) . parent ( ) + relativePath,
101
+ ]
102
+
103
+ guard let settingsPath = possibleSettingsPaths. first ( where: { $0. exists } ) else {
103
104
switch self {
104
105
case . base, . config, . platform:
105
- print ( " No \" \( name) \" settings found at \( settingsPath ) " )
106
+ print ( " No \" \( name) \" settings found " )
106
107
case . product, . productPlatform:
107
108
break
108
109
}
You can’t perform that action at this time.
0 commit comments