File tree Expand file tree Collapse file tree
packages/ionic/src/lib/integrations/cordova Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export function filterArgumentsForCordova(metadata: CommandMetadata, options: Co
4343
4444export function generateOptionsForCordovaBuild ( metadata : CommandMetadata , inputs : CommandLineInputs , options : CommandLineOptions ) : CommandLineOptions {
4545 const platform = inputs [ 0 ] ? inputs [ 0 ] : ( options [ 'platform' ] ? String ( options [ 'platform' ] ) : undefined ) ;
46+ const project = options [ 'project' ] ? String ( options [ 'project' ] ) : undefined ;
4647
4748 // iOS does not support port forwarding out-of-the-box like Android does.
4849 // See https://github.com/ionic-team/native-run/issues/20
@@ -58,5 +59,6 @@ export function generateOptionsForCordovaBuild(metadata: CommandMetadata, inputs
5859 nobrowser : true ,
5960 engine : 'cordova' ,
6061 platform,
62+ project,
6163 } ;
6264}
You can’t perform that action at this time.
0 commit comments