7 lines
158 B
Bash
Executable File
7 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
python3 "$ROOT_DIR/scripts/check-rust-boundaries.py" "$@"
|