mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-20 12:07:51 +03:00
23 lines
570 B
Bash
Executable File
23 lines
570 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# pre-commit.sh
|
|
#
|
|
# Copyright The Mbed TLS Contributors
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
# Purpose
|
|
#
|
|
# This script does quick sanity checks before commiting:
|
|
# - check that generated files are up-to-date.
|
|
#
|
|
# It is meant to be called as a git pre-commit hook, see README.md.
|
|
#
|
|
# From the git sample pre-commit hook:
|
|
# Called by "git commit" with no arguments. The hook should
|
|
# exit with non-zero status after issuing an appropriate message if
|
|
# it wants to stop the commit.
|
|
|
|
set -eu
|
|
|
|
tests/scripts/check-generated-files.sh
|