mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
e897d1c98e
Add some diagrams
14 lines
277 B
Bash
Executable File
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/* |