Skip to content

Commit

Permalink
fix: newline after version command (#4543)
Browse files Browse the repository at this point in the history
  • Loading branch information
aseerkt committed Mar 16, 2024
1 parent da50302 commit c478324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/cli/commands/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class VersionCommand extends Command {
static paths = [[`--version`], [`-v`]];

async execute() {
this.context.stdout.write(`v${pkgVersion}`);
this.context.stdout.write(`v${pkgVersion}\n`);
process.exit(0);
}
}

0 comments on commit c478324

Please sign in to comment.