aboutsummaryrefslogtreecommitdiffstats
path: root/longbow/cmake/get_version.sh
diff options
context:
space:
mode:
Diffstat (limited to 'longbow/cmake/get_version.sh')
-rwxr-xr-xlongbow/cmake/get_version.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/longbow/cmake/get_version.sh b/longbow/cmake/get_version.sh
deleted file mode 100755
index 34c6ddb2..00000000
--- a/longbow/cmake/get_version.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-DATE_VERSION=`date "+%Y%m%d"`
-
-if [ ! -d $1 ]; then
- echo 0.$DATE_VERSION
- exit
-fi
-
-if [ -f $1/BASE_VERSION ]; then
- BASE_VERSION=`cat $1/BASE_VERSION`.
-fi
-
-GIT=`which git`
-
-if test -x $GIT -a -f $1/.git/config; then
- GIT_VERSION=.`git -C $1 rev-parse HEAD | cut -c 1-8`
-fi
-
-echo $BASE_VERSION$DATE_VERSION$GIT_VERSION