implement coderabbit suggestion for non-github actions builds

pull/764/head
John Soros 2025-12-05 05:49:00 -06:00
parent 1c09f7ad31
commit ff72fecedd
No known key found for this signature in database
GPG Key ID: 53F59EAAA99E636E
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -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() {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -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';
}