Code

collectd-threshold(5): Correct the description of the "Interesting" config option.
[collectd.git] / version-gen.sh
1 #!/usr/bin/env bash
3 DEFAULT_VERSION="5.2.2.git"
5 VERSION="`git describe 2> /dev/null | sed -e 's/^collectd-//'`"
7 if test -z "$VERSION"; then
8         VERSION="$DEFAULT_VERSION"
9 fi
11 VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`"
13 echo -n "$VERSION"