cleanup local pipeline, log aws formation
parent
f3c9a5de77
commit
229505628a
|
|
@ -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;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue