blob: 8cff62e864da9c9a1733b775d1743fe2aa7ca95c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
set -eu
cd "${MESON_SOURCE_ROOT:?}"
if [ ! -f .git/hooks/pre-commit.sample ] || [ -f .git/hooks/pre-commit ]; then
exit 2 # not needed
fi
cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
echo 'Activated pre-commit hook'
|