https://github.com/angular/angular
Raw File
Tip revision: ce3cd509f2038706e05cfafe3acfa6542c2cc902 authored by Misko Hevery on 05 May 2021, 20:54:16 UTC
release: cut the v11.2.13 release
Tip revision: ce3cd50
generate_org_chart.sh
#!/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
back to top