mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

Change-Id: I679d1499376a524bef1cfc33df995b0a719b5ac8 Signed-off-by: Paul Beesley <paul.beesley@arm.com>
13 lines
347 B
Bash
13 lines
347 B
Bash
#!/bin/bash
|
|
|
|
# Convert all PlantUML files in this directory to SVG files. The plantuml_jar
|
|
# environment variable must be set to the path to PlantUML JAR file.
|
|
|
|
if [ -z "$plantuml_jar" ]; then
|
|
echo "Usage: plantuml_jar=/path/to/plantuml.jar $0 *.puml" >&2
|
|
exit 1
|
|
fi
|
|
|
|
java -jar "$plantuml_jar" -nometadata -tsvg "$@"
|
|
|
|
# vim:set noet sts=8 tw=80:
|