1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 06:19:29 +00:00

Updated plantuml, changed static/ to public/, and added new scripts to package.json

This commit is contained in:
2022-01-21 21:13:32 +00:00
parent 9f4d947126
commit d3a631ee31
4 changed files with 7 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/ksh
targetdir="$(pwd)/public/assets/diagrams"
umljar="plantuml-1.2022.0.jar"
rm -rf "$targetdir/*"
cp $(pwd)/writeup/diagrams/*.png $targetdir
for diag in $(find . -path "node_modules" -prune -o -name "*.puml" -print); do
ofilename="$(basename $diag .puml).png"
java -jar "utility/uml/$umljar" $diag -o $targetdir
echo "Compiled $diag to $targetdir/$ofilename"
done