Fixing Access Denied error on MacOS
Ziggit
Fixing Access Denied error on MacOS
In MacOS beta 27 (Golden Gate), if experiencing the error AccessDenied; example: error: unable to load "" AccessDenied. Simply reset permissions for the ~/.cache/zig using the chown command sudo chown -R $USER:staff ~/.cache/zig Delete it using sudo rm -r ~/.cache/zig recreate using mkdir -p ~/.cache/zig Finally run zig build and it should compile. At least that is what worked for me. I think the mkdir command might not be necessary since zig recreates the cache folder.
In MacOS beta 27 (Golden Gate), if experiencing the error AccessDenied; example: error: unable to load "" AccessDenied. Simply reset permissions for the ~/.cache/zig using the…
0 comments
No comments yet.