update-gitsetup.bash 468 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env bash
  2. set -e
  3. set -x
  4. shopt -s dotglob
  5. readonly name="GitSetup"
  6. readonly ownership="GitSetup Upstream <kwrobot@kitware.com>"
  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 paths="
  12. .gitattributes
  13. LICENSE
  14. NOTICE
  15. README
  16. setup-hooks
  17. setup-user
  18. tips
  19. "
  20. extract_source () {
  21. git_archive
  22. }
  23. . "${BASH_SOURCE%/*}/update-third-party.bash"