Update EULA

This commit is contained in:
Nathan Sobo 2023-04-05 08:18:51 -06:00
parent 781d065d0b
commit 0d0f6b5a05
6 changed files with 317 additions and 1570 deletions

12
script/generate-eula-rtf Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
set -e
if ! command -v pandoc &> /dev/null
then
brew install pandoc # Install pandoc using Homebrew
fi
pandoc ./script/eula/eula.md -f markdown-smart -t html -o ./script/eula/eula.html
textutil -convert rtf ./script/eula/eula.html -output ./script/eula/eula.rtf
rm ./script/eula/eula.html