File indexing completed on 2025-01-26 04:04:18
0001 #!/bin/sh -e 0002 # SPDX-FileCopyrightText: none 0003 # SPDX-License-Identifier: CC0-1.0 0004 hooksdir=$(dirname "$0") 0005 0006 for f in "$hooksdir"/pre-commit.d/* 0007 do 0008 if [ -x "$f" ] 0009 then 0010 "$f" || exit "$?" 0011 fi 0012 done