5 lines
141 B
Bash
Executable File
5 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
repo_root="$(git rev-parse --show-toplevel)"
|
|
exec python3 "$repo_root/scripts/secret_scan.py" --staged
|