cleanup local pipeline, log aws formation

pull/479/head
Frostebite 2022-12-14 21:45:11 +00:00
parent 3eba88c4d6
commit 99043e41cc
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 || true) !== 'false');
}
static get asyncCloudRunner() {
return CloudRunnerOptions.getInput('asyncCloudRunner') === 'true' || false;
return CloudRunnerOptions.getInput('asyncCloudRunner') === 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

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