Skip to content

Instantly share code, notes, and snippets.

@dig1t
Last active March 24, 2025 23:12
Show Gist options
  • Save dig1t/2812cbba621c1fe4bc8263067b5dc724 to your computer and use it in GitHub Desktop.
Save dig1t/2812cbba621c1fe4bc8263067b5dc724 to your computer and use it in GitHub Desktop.
wally/rojo/aftman Permissions Fix for Mac
# Give all aftman tools full permissions
sudo chmod -R 755 ~/.aftman
sudo chown -R $(whoami):staff ~/.aftman

delete existing generated files in your repository such as:

  • Packages
  • ServerPackages
  • any *.rbxl files generated by rojo
  • sourcemap.json
# Completely remove the Wally cache to clear existing permissions
rm -rf ~/Library/Caches/wally
# Create a new wally cache directory with our set permissions
mkdir -p ~/Library/Caches/wally
sudo chown $(whoami):staff $(which wally)
sudo chmod 755 $(which wally)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment