update-gitsetup.bash 500 B

12345678910111213141516171819202122232425262728
  1. #!/usr/bin/env bash
  2. set -e
  3. set -x
  4. shopt -s dotglob
  5. readonly name="GitSetup"
  6. readonly ownership="GitSetup Upstream <[email protected]>"
  7. readonly subtree="Utilities/GitSetup"
  8. readonly repo="https://gitlab.kitware.com/utils/gitsetup.git"
  9. readonly tag="setup"
  10. readonly shortlog=false
  11. readonly exact_tree_match=false
  12. readonly paths="
  13. .gitattributes
  14. LICENSE
  15. NOTICE
  16. README
  17. setup-hooks
  18. setup-user
  19. tips
  20. "
  21. extract_source () {
  22. git_archive
  23. }
  24. . "${BASH_SOURCE%/*}/update-third-party.bash"