9 lines
117 B
Bash
Executable File
9 lines
117 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
|
|
|
if [[ -x "$hook" ]]
|
|
then
|
|
"$hook" "$@"
|
|
fi
|