f98093a30d
Also improve the presentation of the org chart PR Close #29142
8 lines
240 B
Bash
Executable File
8 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
(
|
|
cd $(dirname $0)
|
|
echo "digraph {"
|
|
echo "rankdir=RL; splines=ortho; node [shape=box];"
|
|
jq -f org_chart.jq --raw-output < ../../content/marketing/contributors.json
|
|
echo "}"
|
|
) | dot -Tpng > org.png |