1
0
mirror of https://github.com/systemd/systemd synced 2024-07-09 12:36:12 +00:00
systemd/tools/git-setup.sh

17 lines
336 B
Bash
Raw Normal View History

2017-12-24 06:53:20 +00:00
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
2017-12-24 06:53:20 +00:00
set -eu
cd "${MESON_SOURCE_ROOT:?}"
ret=2
if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ]; then
cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
echo 'Activated pre-commit hook'
ret=0
fi
exit $ret