File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
200
200
return ( ( ) => {
201
201
let extension = path . extname ( libraryPath ) ;
202
202
if ( extension === ".framework" ) {
203
- this . addDynamicFramework ( libraryPath ) ;
203
+ this . addDynamicFramework ( libraryPath ) . wait ( ) ;
204
204
} else {
205
205
this . $errors . failWithoutHelp ( `The bundle at ${ libraryPath } does not appear to be a dynamic framework package.` ) ;
206
206
}
@@ -461,7 +461,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
461
461
462
462
expectedArchs . forEach ( expectedArch => {
463
463
if ( archsInTheFatFile . indexOf ( expectedArch ) < 0 ) {
464
- this . $errors . failWithoutHelp ( `The static library at ${ libraryPath } is not built for one or more of the following required architectures:
464
+ this . $errors . failWithoutHelp ( `The static library at ${ libraryPath } is not built for one or more of the following required architectures:
465
465
${ expectedArchs . join ( ", " ) } . The static library must be built for all required architectures.` ) ;
466
466
}
467
467
} ) ;
You can’t perform that action at this time.
0 commit comments