9f4ed46c0a
If this is a git checkout, and git is available, then git describe is used. Otherwise, the new checked in VERSION file is taken for the version. This mechanism uses a version.sh script inspired by http://git.musl-libc.org/cgit/musl/tree/tools/version.sh Signed-off-by: Michael Adam <obnox@samba.org>
16 lines
301 B
Bash
Executable File
16 lines
301 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${0}")" && pwd)"
|
|
GIT_DIR="${SCRIPT_DIR}/../.git"
|
|
|
|
if test -d "${GIT_DIR}" ; then
|
|
if type git >/dev/null 2>&1 ; then
|
|
git describe --match '[0-9]*.[0-9]*.[0-9]*' 2>/dev/null \
|
|
| sed -e 's/-/-git-/'
|
|
else
|
|
sed 's/$/-git/' < VERSION
|
|
fi
|
|
else
|
|
cat VERSION
|
|
fi
|