cleanup local pipeline, log aws formation

pull/479/head
Frostebite 2022-12-14 22:00:12 +00:00
parent f3c9a5de77
commit 229505628a
3 changed files with 3 additions and 5 deletions

2
dist/index.js vendored
View File

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

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -235,9 +235,7 @@ class CloudRunnerOptions {
}
static get watchCloudRunnerToEnd(): boolean {
return (
(CloudRunnerOptions.getInput(`watchToEnd`) || CloudRunnerOptions.asyncCloudRunner !== true || true) !== false
);
return (CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner || true) !== false;
}
static get asyncCloudRunner(): boolean {