File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
packages/ionic/src/lib/integrations/cordova Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export function filterArgumentsForCordova(metadata: CommandMetadata, options: Co
43
43
44
44
export function generateOptionsForCordovaBuild ( metadata : CommandMetadata , inputs : CommandLineInputs , options : CommandLineOptions ) : CommandLineOptions {
45
45
const platform = inputs [ 0 ] ? inputs [ 0 ] : ( options [ 'platform' ] ? String ( options [ 'platform' ] ) : undefined ) ;
46
+ const project = options [ 'project' ] ? String ( options [ 'project' ] ) : undefined ;
46
47
47
48
// iOS does not support port forwarding out-of-the-box like Android does.
48
49
// See https://github.com/ionic-team/native-run/issues/20
@@ -58,5 +59,6 @@ export function generateOptionsForCordovaBuild(metadata: CommandMetadata, inputs
58
59
nobrowser : true ,
59
60
engine : 'cordova' ,
60
61
platform,
62
+ project,
61
63
} ;
62
64
}
You can’t perform that action at this time.
0 commit comments