summaryrefslogtreecommitdiffhomepage
path: root/scripts/version.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/version.sh')
-rwxr-xr-xscripts/version.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/version.sh b/scripts/version.sh
new file mode 100755
index 0000000..9a965dc
--- /dev/null
+++ b/scripts/version.sh
@@ -0,0 +1,15 @@
+#!/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