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