From b34a2c0f3f2f52ed39c77759b3b5ecda0bd41156 Mon Sep 17 00:00:00 2001 From: Vidal van Bergen Date: Sat, 8 Jan 2022 16:51:51 +0100 Subject: [PATCH] Added a simple build-script to the root folder. --- .gitignore | 1 + build-collections.sh | 2 ++ 2 files changed, 3 insertions(+) create mode 100755 build-collections.sh diff --git a/.gitignore b/.gitignore index 19047db..cfd17b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ FightClub5eXML/Collections +Compendiums tmp .vscode diff --git a/build-collections.sh b/build-collections.sh new file mode 100755 index 0000000..edbe58a --- /dev/null +++ b/build-collections.sh @@ -0,0 +1,2 @@ +cd Collections +for i in *.xml; do xsltproc -o ../Compendiums/$i ../Utilities/merge.xslt $i; done \ No newline at end of file