[Bf-docboard-svn] bf-manual: [7410] trunk/blender_docs/manual: CLI documentation for macOS doesn't work on non-bash shells

Aaron Carlisle noreply at blender.org
Fri Nov 20 07:08:24 CET 2020


Revision: 7410
          https://developer.blender.org/rBM7410
Author:   Blendify
Date:     2020-11-20 07:08:23 +0100 (Fri, 20 Nov 2020)
Log Message:
-----------
CLI documentation for macOS doesn't work on non-bash shells

Fixes T82644

Modified Paths:
--------------
    trunk/blender_docs/manual/advanced/command_line/launch/macos.rst
    trunk/blender_docs/manual/conf.py

Modified: trunk/blender_docs/manual/advanced/command_line/launch/macos.rst
===================================================================
--- trunk/blender_docs/manual/advanced/command_line/launch/macos.rst	2020-11-20 05:56:58 UTC (rev 7409)
+++ trunk/blender_docs/manual/advanced/command_line/launch/macos.rst	2020-11-20 06:08:23 UTC (rev 7410)
@@ -14,15 +14,17 @@
    cd /Applications/Blender.app/Contents/MacOS
    ./Blender
 
-If you need to do this often,
-you can add this directory to your ``PATH``.
+If you need to do this often, you can add this directory to your ``PATH``.
 
-For that you can run a command like this in the terminal (with the appropriate path).
+For that you can run a following procedure:
 
-.. code-block:: sh
+#. Open up Terminal
+#. Run the following command: ``sudo nano /etc/paths``
+#. Enter your password, when prompted.
+#. Go to the bottom of the file, and enter ``/Applications/Blender.app/Contents/MacOS``
+#. Enter :kbd:`Ctrl-X` to quit
+#. Enter :kbd:`Y` to save the modified buffer
 
-   echo "export PATH="$PATH:/Applications/Blender.app/Contents/MacOS" >> ~/.bash_profile
-
 If you then open a new terminal, the following command will work:
 
 .. code-block:: sh

Modified: trunk/blender_docs/manual/conf.py
===================================================================
--- trunk/blender_docs/manual/conf.py	2020-11-20 05:56:58 UTC (rev 7409)
+++ trunk/blender_docs/manual/conf.py	2020-11-20 06:08:23 UTC (rev 7410)
@@ -111,7 +111,7 @@
 version = blender_version
 # The full version, including alpha/beta/rc tags.
 # release = " ".join((blender_version, "alpha"))
-release = blender_version
+release = blender_version + "alpha"
 
 del blender_version
 



More information about the Bf-docboard-svn mailing list