commit-msg 352 B

1234567891011121314
  1. #!/usr/bin/env bash
  2. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  3. # file Copyright.txt or https://cmake.org/licensing for details.
  4. die() {
  5. echo 'commit-msg hook failure' 1>&2
  6. echo '-----------------------' 1>&2
  7. echo '' 1>&2
  8. echo "$@" 1>&2
  9. exit 1
  10. }
  11. # This is a placeholder for future commit-msg checks.
  12. exit 0