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 {
136136 projectRoot ,
137137 `${ projectData . projectName } .xcworkspace`
138138 ) ;
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"`;
144139 if ( this . $fs . exists ( xcworkspacePath ) ) {
145140 return [
146141 "-workspace" ,
147142 xcworkspacePath ,
148143 "-scheme" ,
149144 projectData . projectName ,
150- // macros ,
145+ "-skipPackagePluginValidation" ,
151146 ] ;
152147 }
153148
@@ -160,7 +155,7 @@ export class XcodebuildArgsService implements IXcodebuildArgsService {
160155 xcodeprojPath ,
161156 "-scheme" ,
162157 projectData . projectName ,
163- // macros ,
158+ "-skipPackagePluginValidation" ,
164159 ] ;
165160 }
166161
You can’t perform that action at this time.
0 commit comments