Merge pull request #3339 from jkohen/patch-1
[collectd.git] / version-gen.sh
1 #!/bin/sh
2
3 DEFAULT_VERSION="5.9.2.git"
4
5 if [ -d .git ]; then
6         VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`"
7 fi
8
9 if test -z "$VERSION"; then
10         VERSION="$DEFAULT_VERSION"
11 fi
12
13 printf "%s" "$VERSION"