aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/taler-harness/src/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts
index 9c3d8bf1f..ff52fc30f 100644
--- 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);
}