0
Fork 0
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:
Juan Picado 2024-03-17 11:34:51 +01:00
parent ed3ce4dc93
commit 913ce37b57

View file

@ -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);
}
}