We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d70b6db commit 1862e2cCopy full SHA for 1862e2c
scripts/check-release.sh
@@ -4,7 +4,7 @@
4
current_tag=$(echo $GITHUB_REF | tr -d 'refs/tags/v')
5
file_tag=$(grep '"version":' package.json | cut -d ':' -f 2- | tr -d ' ' | tr -d '"' | tr -d ',')
6
if [ "$current_tag" != "$file_tag" ]; then
7
- echo "Error: the current tag does not match the version in package file(s)."
+ echo "Error: the current tag does not match the version in the package.json."
8
echo "$current_tag vs $file_tag"
9
exit 1
10
fi
0 commit comments