From 443bf3fa78c902be2210f14d3f688d929bbc5ee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6ran=20Sander?= Date: Sun, 17 Dec 2023 18:58:50 +0000 Subject: [PATCH] feat(help): Add app version as part of help message Easier to know what version of Ctrl-Q is used --- src/ctrl-q.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctrl-q.js b/src/ctrl-q.js index 00e4139..c32715d 100644 --- a/src/ctrl-q.js +++ b/src/ctrl-q.js @@ -57,7 +57,7 @@ const program = new Command(); program .version(appVersion) .description( - 'Ctrl-Q is a command line utility for interacting with client-managed Qlik Sense Enterprise on Windows servers.\nAmong other things the tool does bulk import of apps and tasks, manipulates master items and scrambles in-app data.' + `Ctrl-Q is a command line utility for interacting with client-managed Qlik Sense Enterprise on Windows servers.\nAmong other things the tool does bulk import of apps and tasks, manipulates master items and scrambles in-app data.\n\nVersion: ${appVersion}` ) .hook('preAction', (thisCommand, actionCommand) => { const options = actionCommand.opts();