6 lines
116 B
Bash
Executable File
6 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
REPO_ROOT="$(git rev-parse --show-toplevel)"
|
|
exec "$REPO_ROOT/scripts/git-hooks/pre-commit" "$@"
|