mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 03:27:54 +00:00
UI CI exit 1 if there's an error (#7399)
* exit 1 if there's an error
* fix failing confirm tests
* still need to exit the process 😂
This commit is contained in:
@@ -94,11 +94,12 @@ async function processLines(input, eachLine = () => {}) {
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
process.exit(1);
|
||||
} finally {
|
||||
process.exit(0);
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
process.exit(0);
|
||||
process.exit(1);
|
||||
}
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user