mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
14 lines
277 B
Plaintext
14 lines
277 B
Plaintext
|
#!/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/*
|