8 lines
153 B
Bash
Executable File
8 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(git rev-parse --show-toplevel)"
|
|
cd "$repo_root"
|
|
|
|
python3 scripts/check_commit_message.py --file "$1"
|