Ran across an error after deploying a rails app to production:
A Errno::EEXIST occurred in home#index:In the stacktrace, I noticed that it was using fileutils trying to mkdir (create a directory) for file caching. Normally this wouldn't matter, except the directory it was attempting to create was a broken symlink to a non-existent directory.
File exists - ...
Simple Solution: Manually mkdir the directory that is being symlinked to.
This comment has been removed by the author.
ReplyDeleteWhat directory did you manually create? Having the same problem.
ReplyDelete