Open alexwhitman opened 10 years ago
I wonder if this tiny_mce
directory is a symlink?
You're right, it is. I had forgotten that that had changed in the project recently.
Oh... I see, I need to make gr either skip them or go in, instead of printing an error. Thanks for the report, I'll try to get to that. :)
grep
follows the symlinks so might be best to do that. Just have to be careful about not getting into a loop.
Argh, filepath.Walk
does not follow symlinks, and going around will require a bit of work. I'll try to fix this soon, just had no time.
Ok, I've got basics working (in symlink
branch), but I need to get some path aliasing working, since right now it displays real path to file instead of path to symlink.
I'm getting an odd error:
Can't read file 'CMSADMIN/tinymce3/jscripts/tiny_mce': %!s(MISSING)
- It's odd because the path printed is actually a directory, not a file, so I'm not sure why it's trying to be read in the first place inGetFileAndContent()
.