6 lines
141 B
Bash
Executable File
6 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
|
|
"${repo_root}/scripts/check-chart.sh"
|