Fix defaults (#510)
* Fix defaults * Use '' as default for androidExportType
This commit is contained in:
6
dist/index.js
generated
vendored
6
dist/index.js
generated
vendored
@@ -7231,9 +7231,9 @@ class Input {
|
||||
}
|
||||
static get androidExportType() {
|
||||
// TODO: remove this in V3
|
||||
const exportType = Input.getInput('androidExportType');
|
||||
if (exportType) {
|
||||
return exportType || 'androidPackage';
|
||||
const exportType = Input.getInput('androidExportType') || '';
|
||||
if (exportType !== '') {
|
||||
return exportType;
|
||||
}
|
||||
return Input.androidAppBundle ? 'androidAppBundle' : 'androidPackage';
|
||||
// End TODO
|
||||
|
||||
Reference in New Issue
Block a user