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