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