taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit eb75f5b8318241c0191e87f9834967b963f549d7
parent 43aadba5ab726fb248883171090207b9d4061384
Author: Sebastian <sebasjm@gmail.com>
Date:   Mon, 11 Dec 2023 11:41:30 -0300

harness: also print git hash

Diffstat:
Mpackages/taler-harness/src/index.ts | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts @@ -76,8 +76,9 @@ process.on("unhandledRejection", (error: any) => { }); declare const __VERSION__: string; +declare const __GIT_HASH__: string; function printVersion(): void { - console.log(__VERSION__); + console.log(`${__VERSION__} ${__GIT_HASH__}`); process.exit(0); }