11 lines
150 B
Bash
Executable File
11 lines
150 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
# Check plantuml is in PATH
|
|
command -v plantuml
|
|
|
|
rm -f "*.svg"
|
|
for i in *.dot; do
|
|
plantuml -Tsvg "$i";
|
|
done
|