Reputation: 957
I have installed the glslViewer plugin for Sublime Text 2, which is supposed to run when I open a .frag file. When I open a file the following error appears:
[Errno 13] Permission denied
[cmd: [u'/Users/austin/glslViewer', u'red.frag']]
[dir: /Users/austin/procgraphics/Project1-Noise/src/shaders]
[path: /usr/bin:/bin:/usr/sbin:/sbin]
[Finished]
I changed the permissions to read & write for the folders in path, but the error still occurs. What's going on?
Upvotes: 1
Views: 355
Reputation: 957
Solved it: the path in glslViewer.sublime-settings was pointing to /Users/austin/glslViewer/
instead of /Users/austin/glslViewer/bin/
which is where the executable is located.
Upvotes: 1