Merge pull request #182 from vidalvanbergen/develop

Added a simple build-script to the root folder.
This commit is contained in:
Chris Jennewein
2022-03-04 08:06:02 -07:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
FightClub5eXML/Collections FightClub5eXML/Collections
Compendiums
tmp tmp
.vscode .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