Fix defaults (#510)

* Fix defaults

* Use '' as default for androidExportType
This commit is contained in:
AndrewKahr
2023-02-19 20:23:37 -08:00
committed by GitHub
parent f58ac29d5b
commit 7f2782d3ed
4 changed files with 10 additions and 10 deletions
Generated Vendored
+3 -3
View File
@@ -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
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long