Fix
parent
ba0163dafa
commit
1da3f2efa7
|
|
@ -3579,7 +3579,7 @@ const core = __webpack_require__(42186);
|
||||||
*/
|
*/
|
||||||
class Input {
|
class Input {
|
||||||
static get cloudRunnerTests() {
|
static get cloudRunnerTests() {
|
||||||
return Input.getInput(`CloudRunnerTests`) || false;
|
return Input.getInput(`cloudRunnerTests`) || Input.getInput(`CloudRunnerTests`) || false;
|
||||||
}
|
}
|
||||||
static getInput(query) {
|
static getInput(query) {
|
||||||
return Input.githubEnabled
|
return Input.githubEnabled
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -13,7 +13,7 @@ class Input {
|
||||||
public static githubEnabled = true;
|
public static githubEnabled = true;
|
||||||
public static cliOptions;
|
public static cliOptions;
|
||||||
static get cloudRunnerTests(): boolean {
|
static get cloudRunnerTests(): boolean {
|
||||||
return Input.getInput(`CloudRunnerTests`) || false;
|
return Input.getInput(`cloudRunnerTests`) || Input.getInput(`CloudRunnerTests`) || false;
|
||||||
}
|
}
|
||||||
private static getInput(query) {
|
private static getInput(query) {
|
||||||
return Input.githubEnabled
|
return Input.githubEnabled
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue