summaryrefslogtreecommitdiffstats
path: root/diagrams/build.sh
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@tsaousis.gr>2016-10-17 20:45:40 +0300
committerCosta Tsaousis <costa@tsaousis.gr>2016-10-17 20:45:40 +0300
commit9d979931e59a15dfa8157058a5265395ddb0e94b (patch)
treea7addc58ce37207a857c67863d797a8e02162cbb /diagrams/build.sh
parentdffd3b4edb8c7de3c4b68c6c7822d92d13e50ed4 (diff)
split diagrams to config and actual diagram info
Diffstat (limited to 'diagrams/build.sh')
-rwxr-xr-xdiagrams/build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/diagrams/build.sh b/diagrams/build.sh
index 2adebfd2c9..53f0ea7ab6 100755
--- a/diagrams/build.sh
+++ b/diagrams/build.sh
@@ -11,7 +11,10 @@ fi
for x in *.puml
do
+ [ "${x}" = "config.puml" ] && continue
+
echo >&2 "Working on ${x}..."
java -jar plantuml.jar -tpng "${x}"
+ java -jar plantuml.jar -tsvg "${x}"
# java -jar plantuml.jar -ttxt "${x}"
done