mirror of
git://f0xx.org/ac/ac-scripts
synced 2026-07-29 02:59:20 +03:00
8 lines
219 B
Bash
8 lines
219 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
python3 "$ROOT_DIR/docs/_pdf_build/build_graphvis_pivot_pdf.py"
|
|
echo "Generated: $ROOT_DIR/docs/GRAFANA_vs_others_graphvis_pivot.pdf"
|