diff options
Diffstat (limited to 'diagrams/build.sh')
-rwxr-xr-x | diagrams/build.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/diagrams/build.sh b/diagrams/build.sh deleted file mode 100755 index 9b3963e58..000000000 --- a/diagrams/build.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/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 |