Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlexander Bougakov <Bougakov@users.noreply.github.com>2021-02-15 10:43:41 +0300
committerGitHub <noreply@github.com>2021-02-15 10:43:41 +0300
commit1661db684992d411360f1d6b44e7978a31959826 (patch)
tree0e044917942baab253e20fb9e618a7a2743bfe63 /doc
parentb75830df6ed07bdcad8c40e6189df3fb5a5f8fe8 (diff)
Fixes a typo in the build instructions (#6047)
the line `brew install cmake git gettext` wasn't visible due to formatting error
Diffstat (limited to 'doc')
-rw-r--r--doc/How to build - Mac OS.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/How to build - Mac OS.md b/doc/How to build - Mac OS.md
index bab40ea26..5c2019454 100644
--- a/doc/How to build - Mac OS.md
+++ b/doc/How to build - Mac OS.md
@@ -90,8 +90,9 @@ Works on a fresh installation of MacOS Catalina 10.15.6
- Enter:
-```brew install cmake git gettext
+```
brew update
+brew install cmake git gettext
brew upgrade
git clone https://github.com/prusa3d/PrusaSlicer/
cd PrusaSlicer/deps
@@ -105,3 +106,4 @@ cd build
cmake .. -DCMAKE_PREFIX_PATH="$PWD/../deps/build/destdir/usr/local"
make
src/prusa-slicer
+```