mirror of
https://github.com/collectd/collectd.git
synced 2026-02-09 04:09:15 +08:00
14 lines
267 B
Bash
Executable File
14 lines
267 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DEFAULT_VERSION="5.8.0-RC0.git"
|
|
|
|
if [ -d .git ]; then
|
|
VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`"
|
|
fi
|
|
|
|
if test -z "$VERSION"; then
|
|
VERSION="$DEFAULT_VERSION"
|
|
fi
|
|
|
|
printf "%s" "$VERSION"
|