zed/script/generate-doc-diagrams
Max Brunsfeld e897d1c98e Update collaboration doc
Add some diagrams
2021-06-10 14:27:05 -07:00

14 lines
277 B
Bash
Executable File

#!/bin/bash
# Install the `plantuml` utility if it is not already installed.
if [[ -x plantuml ]]; then
brew install plantuml
fi
# Generate SVGs from all of the UML files.
plantuml \
-nometadata \
-overwrite \
-tsvg \
-o ../svg \
docs/diagrams/src/*