Added a simple build-script to the root folder.

pull/182/head
Vidal van Bergen 2022-01-08 16:51:51 +01:00
parent 94441f22ff
commit b34a2c0f3f
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
FightClub5eXML/Collections
Compendiums
tmp
.vscode

2
build-collections.sh Executable file
View File

@ -0,0 +1,2 @@
cd Collections
for i in *.xml; do xsltproc -o ../Compendiums/$i ../Utilities/merge.xslt $i; done