@@ -537,7 +537,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
537537 public prepareAppResources ( appResourcesDirectoryPath : string ) : IFuture < void > {
538538 return ( ( ) => {
539539 let platformFolder = path . join ( appResourcesDirectoryPath , this . platformData . normalizedPlatformName ) ;
540- let filterFile = ( filename : string ) => this . $fs . deleteFile ( path . join ( platformFolder , filename ) ) . wait ( ) ;
540+ let filterFile = ( filename : string ) => this . $fs . deleteFile ( path . join ( platformFolder , filename ) ) ;
541541
542542 filterFile ( this . platformData . configurationFileName ) ;
543543
@@ -912,7 +912,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
912912 let contentToRemove = this . buildPodfileContent ( pluginPodFilePath , pluginPodFileContent ) ;
913913 projectPodFileContent = helpers . stringReplaceAll ( projectPodFileContent , contentToRemove , "" ) ;
914914 if ( projectPodFileContent . trim ( ) === `use_frameworks!${ os . EOL } ${ os . EOL } target "${ this . $projectData . projectName } " do${ os . EOL } ${ os . EOL } end` ) {
915- this . $fs . deleteFile ( this . projectPodFilePath ) . wait ( ) ;
915+ this . $fs . deleteFile ( this . projectPodFilePath ) ;
916916 } else {
917917 this . $fs . writeFile ( this . projectPodFilePath , projectPodFileContent ) . wait ( ) ;
918918 }
@@ -931,7 +931,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
931931 let headers = _ ( headersFolderContents ) . filter ( item => headersFilter ( item , headersFolderPath ) ) . value ( ) ;
932932
933933 if ( ! headers . length ) {
934- this . $fs . deleteFile ( path . join ( headersFolderPath , "module.modulemap" ) ) . wait ( ) ;
934+ this . $fs . deleteFile ( path . join ( headersFolderPath , "module.modulemap" ) ) ;
935935 return ;
936936 }
937937
@@ -957,7 +957,7 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
957957
958958 private mergeProjectXcconfigFiles ( ) : IFuture < void > {
959959 return ( ( ) => {
960- this . $fs . deleteFile ( this . $options . release ? this . pluginsReleaseXcconfigFilePath : this . pluginsDebugXcconfigFilePath ) . wait ( ) ;
960+ this . $fs . deleteFile ( this . $options . release ? this . pluginsReleaseXcconfigFilePath : this . pluginsDebugXcconfigFilePath ) ;
961961
962962 let allPlugins : IPluginData [ ] = ( < IPluginsService > this . $injector . resolve ( "pluginsService" ) ) . getAllInstalledPlugins ( ) . wait ( ) ;
963963 for ( let plugin of allPlugins ) {
0 commit comments