taler-util: exit with correct status, not always 1

This commit is contained in:
Florian Dold 2023-02-19 13:41:30 +01:00
parent 0ee3f94463
commit f4a651ef32
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -20,7 +20,7 @@ import path from "node:path";
import os from "node:os"; import os from "node:os";
export function processExit(status: number): never { export function processExit(status: number): never {
process.exit(1); process.exit(status);
} }
export function processArgv(): string[] { export function processArgv(): string[] {