Skip to content

Commit 23ada55

Browse files
committed
fix: emit semver-only version string
1 parent 850f2c8 commit 23ada55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function parseArgs(): ParsedArgs {
7070
}
7171

7272
function printHelp() {
73-
console.log(`Codecane v${VERSION}`)
73+
console.log(`Codecane CLI v${VERSION}`)
7474
console.log('')
7575
console.log('Usage: codecane [options] [initial prompt]')
7676
console.log('')
@@ -85,7 +85,7 @@ function printHelp() {
8585
}
8686

8787
function printVersion() {
88-
console.log(`Codecane v${VERSION}`)
88+
console.log(VERSION)
8989
}
9090

9191
const { initialPrompt, clearLogs, showHelp, showVersion } = parseArgs()

0 commit comments

Comments
 (0)