Skip to content

Instantly share code, notes, and snippets.

@deckerego
Created May 31, 2020 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deckerego/8a7bffeef0bd68ba199ba3eba1e8305d to your computer and use it in GitHub Desktop.
Save deckerego/8a7bffeef0bd68ba199ba3eba1e8305d to your computer and use it in GitHub Desktop.
Fix Blender 2.82 permissions in MacOS
#!/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