version.sh 209 B

123456789101112
  1. #!/bin/sh
  2. if test -d .git ; then
  3. if type git >/dev/null 2>&1 ; then
  4. git describe --tags --match 'v[0-9]*' 2>/dev/null \
  5. | sed -e 's/^v//' -e 's/-/-git-/'
  6. else
  7. sed 's/$/-git/' < VERSION
  8. fi
  9. else
  10. cat VERSION
  11. fi