summaryrefslogtreecommitdiffstats
path: root/diagrams/build.sh
blob: 9b3963e58cf65c3cd4265f78a25a2e54965ba0ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-or-later

path=$(dirname "$0")
cd "${path}" || exit 1

if [ ! -f "plantuml.jar" ]
then
	echo >&2 "Please download 'plantuml.jar' from http://plantuml.com/ and put it the same folder with me."
	exit 1
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