showrev.sh 497 B

1234567891011121314151617181920212223242526
  1. #!/bin/sh
  2. #
  3. # Print the current source revision, if available
  4. SDL_ROOT=$(dirname $0)/..
  5. cd $SDL_ROOT
  6. if [ -x "$(command -v git)" ]; then
  7. rev=$(echo "$(git remote get-url origin 2>/dev/null)@$(git rev-list HEAD~.. 2>/dev/null)")
  8. if [ "$rev" != "@" ]; then
  9. echo $rev
  10. exit 0
  11. fi
  12. fi
  13. if [ -x "$(command -v p4)" ]; then
  14. rev="$(p4 changes -m1 ./...\#have 2>/dev/null| awk '{print $2}')"
  15. if [ $? = 0 ]; then
  16. echo $rev
  17. exit 0
  18. fi
  19. fi
  20. echo ""
  21. exit 1