Created
May 31, 2020 19:09
-
-
Save deckerego/8a7bffeef0bd68ba199ba3eba1e8305d to your computer and use it in GitHub Desktop.
Fix Blender 2.82 permissions in MacOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo find /Applications/Blender.app -perm +111 -type f -exec chmod og+x {} \; | |
sudo find /Applications/Blender.app -type d -exec chmod og+x {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment