mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 12:37:09 +00:00
Closes #40210 Previously attempted in #40423 and #42756. Third time's the charm? Release Notes: - Fixed encoding error in terms & conditions displayed when installing
10 lines
222 B
Bash
Executable file
10 lines
222 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if ! command -v pandoc &> /dev/null
|
|
then
|
|
brew install pandoc # Install pandoc using Homebrew
|
|
fi
|
|
|
|
pandoc ./legal/terms.md -f markdown-smart -t rtf -o ./script/terms/terms.rtf --standalone
|