2018-03-05 22:34:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-12-17 22:17:29 +03:00
|
|
|
# Get the last tag
|
2018-12-27 23:03:46 +03:00
|
|
|
TAG=$(git describe --abbrev=0 --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" 2>/dev/null)
|
2018-12-28 00:14:23 +03:00
|
|
|
(test $? != 0 || test -z "$TAG") && (echo "unknown"; exit 1)
|
2018-06-17 20:17:21 +03:00
|
|
|
|
2018-12-27 23:03:46 +03:00
|
|
|
# Get the current branch
|
|
|
|
BRANCH=$(git symbolic-ref -q HEAD --short 2>/dev/null)
|
2018-12-28 00:14:23 +03:00
|
|
|
(test $? != 0 || test -z "$BRANCH") && BRANCH="master"
|
2018-03-05 22:34:23 +03:00
|
|
|
|
|
|
|
# Split out into major, minor and patch numbers
|
2018-03-06 01:14:36 +03:00
|
|
|
MAJOR=$(echo $TAG | cut -c 2- | cut -d "." -f 1)
|
|
|
|
MINOR=$(echo $TAG | cut -c 2- | cut -d "." -f 2)
|
2018-12-27 23:03:46 +03:00
|
|
|
PATCH=$(echo $TAG | cut -c 2- | cut -d "." -f 3)
|
2018-06-17 20:17:21 +03:00
|
|
|
|
2018-03-05 22:34:23 +03:00
|
|
|
# Output in the desired format
|
2018-12-27 23:03:46 +03:00
|
|
|
if [ $((PATCH)) -eq 0 ]; then
|
|
|
|
printf '%s%d.%d' "$PREPEND" "$((MAJOR))" "$((MINOR))"
|
2018-03-06 01:14:36 +03:00
|
|
|
else
|
2018-12-27 23:03:46 +03:00
|
|
|
printf '%s%d.%d.%d' "$PREPEND" "$((MAJOR))" "$((MINOR))" "$((PATCH))"
|
2018-03-06 01:14:36 +03:00
|
|
|
fi
|
2018-06-17 20:17:21 +03:00
|
|
|
|
|
|
|
# Add the build tag on non-master branches
|
2018-12-27 23:03:46 +03:00
|
|
|
if [ "$BRANCH" != "master" ]; then
|
|
|
|
BUILD=$(git rev-list $TAG..HEAD --count)
|
2018-12-28 00:14:23 +03:00
|
|
|
if [ $? = 0 ] && [ -n "$BUILD" ]; then
|
|
|
|
if [ $((BUILD)) -gt 0 ]; then
|
|
|
|
printf -- "-%04d" "$((BUILD))"
|
|
|
|
fi
|
2018-06-17 20:17:21 +03:00
|
|
|
fi
|
|
|
|
fi
|