12 lines
280 B
Bash
12 lines
280 B
Bash
# requires skill-tree: github.com/nikomatsakis/skill-tree
|
|
|
|
render () {
|
|
echo "Rendering $1"
|
|
skill-tree $1.toml output
|
|
python3 -c "from graphviz import render; render('hez', 'png', 'output/skill-tree.hez')"
|
|
mv output/skill-tree.hez.png "$1.png"
|
|
rm -rf output
|
|
}
|
|
|
|
render phase-1
|