1#!/bin/bash
2
3# Install the `plantuml` utility if it is not already installed.
4if [[ -x plantuml ]]; then
5 brew install plantuml
6fi
7
8# Generate SVGs from all of the UML files.
9plantuml \
10 -nometadata \
11 -overwrite \
12 -tsvg \
13 -o ../svg \
14 docs/diagrams/src/*