Merge pull request #182 from vidalvanbergen/develop

Added a simple build-script to the root folder.
pull/178/head^2
Chris Jennewein 2022-03-04 08:06:02 -07:00 committed by GitHub
commit 9a97023dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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