Fix warning spam
parent
6d342d0dc6
commit
6e7a769cf3
|
@ -6614,8 +6614,7 @@ class Input {
|
|||
static get androidAppBundle() {
|
||||
// Only throw warning if defined
|
||||
let input = Input.getInput('androidAppBundle');
|
||||
core.info(`androidAppBundle: ${input}`);
|
||||
if (input !== '') {
|
||||
if (input !== undefined) {
|
||||
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
||||
}
|
||||
else {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -145,8 +145,7 @@ class Input {
|
|||
static get androidAppBundle(): boolean {
|
||||
// Only throw warning if defined
|
||||
let input = Input.getInput('androidAppBundle');
|
||||
core.info(`androidAppBundle: ${input}`);
|
||||
if (input !== '') {
|
||||
if (input !== undefined) {
|
||||
core.warning('androidAppBundle is deprecated, please use androidExportType instead');
|
||||
} else {
|
||||
input = 'false';
|
||||
|
|
Loading…
Reference in New Issue