aboutsummaryrefslogtreecommitdiff
path: root/contrib/get_version.sh
blob: 35eed9f948fa24aa59f0ce2a9dcfe402d0737513 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# Gets the version number from git, or from the contents of .version
VERSION=
if test -f ".version"
then
  VERSION=$(cat .version)
fi
if test "x$VERSION" = "x" -a -d "./.git"
then
  VERSION=$(git describe --tags)
  VERSION=${VERSION:1:${#VERSION}}
  echo $VERSION > .version
fi
if test "x$VERSION" = "x"
then
  VERSION="unknown"
fi
echo -n "$VERSION"