File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -136,18 +136,13 @@ export class XcodebuildArgsService implements IXcodebuildArgsService {
136
136
projectRoot ,
137
137
`${ projectData . projectName } .xcworkspace`
138
138
) ;
139
- // Igor: avoid more DI?
140
- // const macros = this.$devicePlatformsConstants.isvisionOS(
141
- // projectData.platformsDir
142
- // ) ? `GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 NS_DISABLE_MAIN_BOOT=1"` : "";
143
- // const macros = `GCC_PREPROCESSOR_DEFINITIONS="NS_DISABLE_MAIN_BOOT=1"`;
144
139
if ( this . $fs . exists ( xcworkspacePath ) ) {
145
140
return [
146
141
"-workspace" ,
147
142
xcworkspacePath ,
148
143
"-scheme" ,
149
144
projectData . projectName ,
150
- // macros ,
145
+ "-skipPackagePluginValidation" ,
151
146
] ;
152
147
}
153
148
@@ -160,7 +155,7 @@ export class XcodebuildArgsService implements IXcodebuildArgsService {
160
155
xcodeprojPath ,
161
156
"-scheme" ,
162
157
projectData . projectName ,
163
- // macros ,
158
+ "-skipPackagePluginValidation" ,
164
159
] ;
165
160
}
166
161
You can’t perform that action at this time.
0 commit comments