Skip to content

Commit e82fbb0

Browse files
committed
chore(release): add v before version
1 parent 47641d6 commit e82fbb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ set -e
22
echo "Enter release version: "
33
read VERSION
44

5-
read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
5+
read -p "Releasing v$VERSION - are you sure? (y/n)" -n 1 -r
66
echo # (optional) move to a new line
77
if [[ $REPLY =~ ^[Yy]$ ]]
88
then
9-
echo "Releasing $VERSION ..."
9+
echo "Releasing v$VERSION ..."
1010
npm test
1111

1212
# commit

0 commit comments

Comments
 (0)