implement coderabbit suggestion for non-github actions builds
parent
1c09f7ad31
commit
ff72fecedd
|
|
@ -7022,7 +7022,7 @@ class Input {
|
|||
return input === 'true';
|
||||
}
|
||||
static get enableParallelLinking() {
|
||||
const input = Input.getInput('enableParallelLinking') ?? false;
|
||||
const input = Input.getInput('enableParallelLinking') ?? true;
|
||||
return input === 'true';
|
||||
}
|
||||
static get customParameters() {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -144,7 +144,7 @@ class Input {
|
|||
}
|
||||
|
||||
static get enableParallelLinking(): boolean {
|
||||
const input = Input.getInput('enableParallelLinking') ?? false;
|
||||
const input = Input.getInput('enableParallelLinking') ?? true;
|
||||
|
||||
return input === 'true';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue