8 lines
147 B
Bash
Executable file
8 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
hook=$(basename $0)
|
|
if [ -f $GIT_DIR/hooks/$hook ]
|
|
then
|
|
echo Running project-level hook: $GIT_DIR/hooks/$hook
|
|
$GIT_DIR/hooks/$hook
|
|
fi
|
|
|