On Sun, Mar 22, 2009 at 12:39 PM, sivaji <[email protected]> wrote: > Hello guys > > I am not able run "heroku rake db:migrate" command successfully it > returns readonly file system error as below. > > siv...@fos$:-heroku rake db:migrate > (in /disk1/home/slugs/7504_169ef05_4f6d/mnt) > rake aborted! > Read-only file system - /disk1/home/slugs/7504_169ef05_4f6d/mnt/public/ > stylesheets/dhtml_calendar/calendar-blue.css > > (See full trace by running task with --trace) > > Here the output of heroku rake db:migrate --trace > http://pastebin.com/f30785672 > > URL to access my application is here > http://deep-mist-59.heroku.com/ > > Please help me to solve this issue
It looks like the "svn" plugin is attempting to recursively copy a directory into "public/stylesheets". Heroku's filesystem is read-only and does not allow rake tasks to write directly to the app directory. See the following doc topic for more info and possible workarounds: http://heroku.com/docs/#toc63 Thanks, Ryan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
