From b34a2c0f3f2f52ed39c77759b3b5ecda0bd41156 Mon Sep 17 00:00:00 2001 From: Vidal van Bergen Date: Sat, 8 Jan 2022 16:51:51 +0100 Subject: [PATCH 1/2] 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 From b45f232eb9bef502bb897a8b1dca03a2c8997b86 Mon Sep 17 00:00:00 2001 From: Vidal van Bergen Date: Sun, 9 Jan 2022 01:08:10 +0100 Subject: [PATCH 2/2] Added missing new line at end of script --- build-collections.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-collections.sh b/build-collections.sh index edbe58a..0989ad9 100755 --- a/build-collections.sh +++ b/build-collections.sh @@ -1,2 +1,2 @@ cd Collections -for i in *.xml; do xsltproc -o ../Compendiums/$i ../Utilities/merge.xslt $i; done \ No newline at end of file +for i in *.xml; do xsltproc -o ../Compendiums/$i ../Utilities/merge.xslt $i; done