portable: release 0.96
[got-portable.git] / util / got-portable-ver.sh
blobb181f8c3cada31cf6ad89809373257a66114c17d
1 #!/bin/sh
3 # got-portable-ver: emits the version of got which is building.
4 # If this is a release build, then the tag name is chomped
5 # to remove extraneous git information.
7 # If it's a developer build, it's left as-is.
9 # Intended to be called from configure.ac (via autogen.sh)
10 GOT_RELEASE=yes
11 GOT_PORTABLE_VER=0.96
13 [ -d ".git" -a "$GOT_RELEASE" = "no" ] || { echo "$GOT_PORTABLE_VER" ; exit ; }
15 git describe --always --dirty 2>/dev/null || \
16 echo "$GOT_PORTABLE_VER"