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 d900de8 commit 8fa744dCopy full SHA for 8fa744d
contrib/semver/name.sh
@@ -3,11 +3,8 @@
3
# Get the current branch name
4
BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null)
5
6
-if [ -n "$APPVEYOR_PULL_REQUEST_NUMBER" ]; then
7
- printf "mesh-pr%s" "$APPVEYOR_PULL_REQUEST_NUMBER"
8
- exit 0
9
# Complain if the git history is not available
10
-elif [ $? != 0 ] || [ -z "$BRANCH" ]; then
+if [ $? != 0 ] || [ -z "$BRANCH" ]; then
11
printf "mesh"
12
exit 0
13
fi
0 commit comments