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 10b10eb commit 147ffecCopy full SHA for 147ffec
tools/check-release.sh
@@ -50,10 +50,10 @@ if [ "$HEAD_VERSION" != "$VERSION" ]; then
50
fi
51
52
# The version tag should match the `make version` target output.
53
-MAKE_VERSION=$(make version)
+MAKE_VERSION=$(make version | tail -n 1)
54
echo "MAKE_VERSION=$MAKE_VERSION"
55
if [ "$MAKE_VERSION" != "$VERSION" ]; then
56
- echo "The version tag must match the \`make version\` target output." >&2
+ echo "The version tag \"$VERSION\" must match the \`make version\` target output \"$MAKE_VERSION\"." >&2
57
exit 1
58
59
0 commit comments