]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - tools/add-git-hook.sh
meson: Rename add-git-hook.sh to git-setup.sh and configure git in it
[thirdparty/systemd.git] / tools / add-git-hook.sh
diff --git a/tools/add-git-hook.sh b/tools/add-git-hook.sh
deleted file mode 100755 (executable)
index 8cff62e..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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'