7 lines
184 B
Bash
7 lines
184 B
Bash
|
#!/usr/bin/env bash
|
||
|
(
|
||
|
cd $(dirname $0)
|
||
|
echo "digraph {"
|
||
|
jq -f org_chart.jq --raw-output < ../../content/marketing/contributors.json
|
||
|
echo "}"
|
||
|
) | dot -Tpng > org.png
|