System Information
Operating system: MacOS 10.14.6
Graphics card:
Blender Version
Broken: 2.80
Worked: (optional)
Short description of error
When Blender is opened by clicking on the Blender.app icon, the underlying system path (accessed via "import os; os.environ['PATH']" in the console) is not the same as the user's path, which is inconsistent with the behavior when Blender is opened via double clicking Blender.app/Contents/MacOS/Blender. This causes problems for addons when trying to call external programs.
Note that this only happens on MacOS and not on Ubuntu.
Exact steps for others to reproduce the error
Open blender by clicking on Blender.app.
Go to Scripting.
Type "import os; os.environ['PATH']" in the Console.
Returns "/usr/bin:/bin:/usr/sbin:/sbin"
Open blender by going to Blender.app/Contents/MacOS/Blender
Go to scripting
Type "import os; os.environ['PATH']" in the Console
Returns user's path.