erisu commented on issue #621: URL: https://github.com/apache/cordova-cli/issues/621#issuecomment-1636749604
Have you looked into adding platform specific parameters instead of adding to this CLI repo? Usually platform specific commands are separated by extra double hyphens... ``` cordova build <platform> <cli-flags> -- <platform-flags> ``` For example in Android you can see the command below showing Android own defined flags... ``` cordova run android -- --gradleArg=-PcdvMinSdkVersion=20 ``` If my memory is correct, you will not find `gradleArg` defined anywhere in this repo or supporting libraries... But is in the platform repo. I believe in this case, https, flag would fall into the same category. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
