2018-03-05 19:34:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Get the last tag
|
2018-03-05 20:06:38 +00:00
|
|
|
TAG=$(git describe --abbrev=0 --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" 2>/dev/null)
|
2018-03-05 19:34:23 +00:00
|
|
|
|
2018-03-05 20:06:38 +00:00
|
|
|
# Get the number of commits from the last tag
|
|
|
|
COUNT=$(git rev-list $TAG..HEAD --count 2>/dev/null)
|
2018-03-05 19:34:23 +00:00
|
|
|
|
2018-03-05 20:06:38 +00:00
|
|
|
# If it fails then there's no last tag - go from the first commit
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
COUNT=$(git rev-list HEAD --count 2>/dev/null)
|
2018-03-05 19:34:23 +00:00
|
|
|
|
|
|
|
printf 'v0.0.0-%d' "$COUNT"
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Trim the "v" off the front
|
|
|
|
TAG=$(echo $TAG | cut -c 2-)
|
|
|
|
|
|
|
|
# Split out into major, minor and patch numbers
|
|
|
|
MAJOR=$(echo $TAG | cut -d "." -f 1)
|
|
|
|
MINOR=$(echo $TAG | cut -d "." -f 2)
|
|
|
|
PATCH=$(echo $TAG | cut -d "." -f 3)
|
|
|
|
|
|
|
|
# Output in the desired format
|
|
|
|
printf 'v%d.%d.%d-%d' "$MAJOR" "$MINOR" "$PATCH" "$COUNT"
|