manualExit suppresses -quit, useful for buildMethods with async calls (#574)

* `manualExit` suppresses `-quit`, useful for buildMethods with async calls

* Use boolean
This commit is contained in:
Toby Harris
2023-09-20 22:41:17 +01:00
committed by GitHub
parent 2190fd5667
commit a13443a746
8 changed files with 39 additions and 2 deletions

View File

@@ -126,6 +126,12 @@ class Input {
return Input.getInput('buildMethod') || ''; // Processed in docker file
}
static get manualExit(): boolean {
const input = Input.getInput('manualExit') || false;
return input === 'true';
}
static get customParameters(): string {
return Input.getInput('customParameters') || '';
}