Skip to content

Commit 894357d

Browse files
committed
In version script, add 'v' prefix to version tags
1 parent f32c782 commit 894357d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if (arg) {
5555
fs.writeFileSync(cargoTomlPath, newCargoMetadata, 'utf8');
5656
execFileSync('cargo', ['build'], {cwd: cliPath});
5757
execFileSync('git', ['commit', '-a', '-m', newVersion]);
58-
execFileSync('git', ['tag', newVersion]);
58+
execFileSync('git', ['tag', 'v' + newVersion]);
5959
console.log(newVersion)
6060
} else {
6161
console.log(npmVersion);

0 commit comments

Comments
 (0)