fix version set for cli and slash commands (#892)

This commit is contained in:
Zach Sais
2025-06-11 08:25:26 -05:00
committed by GitHub
parent 727b4075e9
commit 09ddf6eb71
4 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -5,5 +5,5 @@
*/
export function getCliVersion(): string {
return process.env.CLI_VERSION || process.version;
return process.env.CLI_VERSION || 'unknown';
}