From c7e850b95fc724d8fcbb097fb6745777b895efcb Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sat, 21 Jun 2025 18:09:19 +0200 Subject: [PATCH] fixed: accidentally removed markdown install instructions --- Tools/Documentation/preprocess/001.markdown_readme.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tools/Documentation/preprocess/001.markdown_readme.sh b/Tools/Documentation/preprocess/001.markdown_readme.sh index 752a2d5b7..dc01a4e98 100755 --- a/Tools/Documentation/preprocess/001.markdown_readme.sh +++ b/Tools/Documentation/preprocess/001.markdown_readme.sh @@ -17,5 +17,8 @@ if [ -n "$markdown" ]; then "$markdown" "$1/README.markdown" > "README.html" else processor_msg "markdown binary is not installed, documentation cannot be generated." "red" + echo "On Mac OS X, install brew with the following command line:" + echo ' ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"' + echo "Then use 'brew install markdown' from the command line to install markdown." exit 1 fi