Manuel Pégourié-Gonnard | 845e408 | 2020-07-16 10:53:13 +0200 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # pre-commit.sh |
| 4 | # |
Bence Szépkúti | 44bfbe3 | 2020-08-19 16:54:51 +0200 | [diff] [blame] | 5 | # Copyright The Mbed TLS Contributors |
Manuel Pégourié-Gonnard | 845e408 | 2020-07-16 10:53:13 +0200 | [diff] [blame] | 6 | # SPDX-License-Identifier: Apache-2.0 |
| 7 | # |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 9 | # not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 16 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
Manuel Pégourié-Gonnard | 845e408 | 2020-07-16 10:53:13 +0200 | [diff] [blame] | 19 | |
| 20 | # Purpose |
| 21 | # |
| 22 | # This script does quick sanity checks before commiting: |
| 23 | # - check that generated files are up-to-date. |
| 24 | # |
| 25 | # It is meant to be called as a git pre-commit hook, see README.md. |
| 26 | # |
| 27 | # From the git sample pre-commit hook: |
| 28 | # Called by "git commit" with no arguments. The hook should |
| 29 | # exit with non-zero status after issuing an appropriate message if |
| 30 | # it wants to stop the commit. |
| 31 | |
| 32 | set -eu |
| 33 | |
| 34 | tests/scripts/check-generated-files.sh |