cleanup local pipeline, log aws formation

pull/479/head
Frostebite 2022-12-14 21:23:33 +00:00
parent 8407226966
commit fecda89d4e
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

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

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

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