mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-03-11 02:15:57 -05:00
fix: newline after version command
fix (#4543) Co-Authored-By: Aseer KT <39845171+aseerkt@users.noreply.github.com>
This commit is contained in:
parent
ed3ce4dc93
commit
913ce37b57
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue