Skip to content

Commit 1862e2c

Browse files
authored
Update scripts/check-release.sh
1 parent d70b6db commit 1862e2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
current_tag=$(echo $GITHUB_REF | tr -d 'refs/tags/v')
55
file_tag=$(grep '"version":' package.json | cut -d ':' -f 2- | tr -d ' ' | tr -d '"' | tr -d ',')
66
if [ "$current_tag" != "$file_tag" ]; then
7-
echo "Error: the current tag does not match the version in package file(s)."
7+
echo "Error: the current tag does not match the version in the package.json."
88
echo "$current_tag vs $file_tag"
99
exit 1
1010
fi

0 commit comments

Comments
 (0)