Update EULA
This commit is contained in:
parent
781d065d0b
commit
0d0f6b5a05
6 changed files with 317 additions and 1570 deletions
12
script/generate-eula-rtf
Executable file
12
script/generate-eula-rtf
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue