get-version 191 B

12345678910111213
  1. #!/bin/sh
  2. if test -f .version; then
  3. v=`cat .version`
  4. else
  5. v=`git describe --tags 2> /dev/null`
  6. fi
  7. test -z "$v" && v="unknown"
  8. # remove initial 'v'
  9. echo "$v" | sed 's/^v//'