Skip to content

Commit

Permalink
Merge pull request #63 from aakritiawasthi/reformat-version-output
Browse files Browse the repository at this point in the history
fix: reformatted version output
  • Loading branch information
giarve authored Aug 2, 2024
2 parents 3c04d38 + 9805504 commit 4dfe98b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export function printVersionAndExit(): void {
const packageJson = JSON.parse(readFileSync(packageJsonPath, 'utf8')) as {
version: string;
};
console.log(`FaaS version: ${packageJson.version}`);
console.log(`v${packageJson.version}`);
process.exit(0);
}

0 comments on commit 4dfe98b

Please sign in to comment.