versioncheck 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #!/usr/bin/env bash
  2. # Copyright (C) 2021 Leah Rowe <info@minifree.org>
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. #
  17. [ "x${DEBUG+set}" = 'xset' ] && set -v
  18. set -u -e
  19. version="version-unknown"
  20. if [ -f version ]; then
  21. version="$(cat version)"
  22. fi
  23. version_="${version}"
  24. if [ -d ".git/" ]; then
  25. version="$(git describe --tags HEAD 2>&1)" \
  26. || version="git-$(git rev-parse HEAD 2>&1)" \
  27. || version="${version_}"
  28. printf "%s\n" "${version}" > version
  29. fi
  30. versiondate="version-date-unknown"
  31. if [ -f versiondate ]; then
  32. versiondate="$(cat versiondate)"
  33. fi
  34. versiondate_="${versiondate}"
  35. if [ -d ".git/" ]; then
  36. versiondate="$(git show --no-patch --no-notes --pretty='%ct' HEAD)" \
  37. || versiondate="${versiondate_}"
  38. printf "%s\n" "${versiondate}" > versiondate
  39. fi