diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-03-14 10:29:55 +0100 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-03-15 17:27:49 +0100 |
commit | 6233a769327d8a1e7247ce741569752ffcf09144 (patch) | |
tree | 6d2068839e3f7a7dc0b20a3fa50faebddf6e0dbd /tools | |
parent | docs: Update HACKING guide with recommended git config (diff) | |
download | systemd-6233a769327d8a1e7247ce741569752ffcf09144.tar.xz systemd-6233a769327d8a1e7247ce741569752ffcf09144.zip |
meson: Rename add-git-hook.sh to git-setup.sh and configure git in it
Let's automatically apply the recommended git config with meson.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/git-setup.sh (renamed from tools/add-git-hook.sh) | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/add-git-hook.sh b/tools/git-setup.sh index 8cff62e864..2f7be5ccd6 100755 --- a/tools/add-git-hook.sh +++ b/tools/git-setup.sh @@ -4,6 +4,11 @@ set -eu cd "${MESON_SOURCE_ROOT:?}" +if [ -e .git ]; then + git config submodule.recurse true + git config fetch.recurseSubmodules on-demand +fi + if [ ! -f .git/hooks/pre-commit.sample ] || [ -f .git/hooks/pre-commit ]; then exit 2 # not needed fi |