6 lines
152 B
Bash
Executable File
6 lines
152 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(git rev-parse --show-toplevel)"
|
|
exec "$repo_root/scripts/scan-secret-bearing-artifacts.sh" --staged
|