cleanup local pipeline, log aws formation

pull/479/head
Frostebite 2022-12-15 00:30:00 +00:00
parent eb76d1bd1f
commit 3fd4d8666f
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -865,7 +865,7 @@ class CloudRunnerOptions {
return (CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner || true) !== false;
}
static get asyncCloudRunner() {
return CloudRunnerOptions.getInput('asyncCloudRunner') === true || false;
return (CloudRunnerOptions.getInput('asyncCloudRunner') || `false`) === `true` || false;
}
static get useSharedLargePackages() {
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') === 'true';

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -239,7 +239,7 @@ class CloudRunnerOptions {
}
static get asyncCloudRunner(): boolean {
return CloudRunnerOptions.getInput('asyncCloudRunner') === true || false;
return (CloudRunnerOptions.getInput('asyncCloudRunner') || `false`) === `true` || false;
}
public static get useSharedLargePackages(): boolean {