Fix
parent
ba0163dafa
commit
1da3f2efa7
|
|
@ -3579,7 +3579,7 @@ const core = __webpack_require__(42186);
|
|||
*/
|
||||
class Input {
|
||||
static get cloudRunnerTests() {
|
||||
return Input.getInput(`CloudRunnerTests`) || false;
|
||||
return Input.getInput(`cloudRunnerTests`) || Input.getInput(`CloudRunnerTests`) || false;
|
||||
}
|
||||
static getInput(query) {
|
||||
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 cliOptions;
|
||||
static get cloudRunnerTests(): boolean {
|
||||
return Input.getInput(`CloudRunnerTests`) || false;
|
||||
return Input.getInput(`cloudRunnerTests`) || Input.getInput(`CloudRunnerTests`) || false;
|
||||
}
|
||||
private static getInput(query) {
|
||||
return Input.githubEnabled
|
||||
|
|
|
|||
Loading…
Reference in New Issue