Having a bit of a rough time deploying a rails 3.1 app - things seem to be working but I'm getting weird errors:
*** [err :: 97.107.134.41] find: `/home/deploy/myapp/releases/20120208030228/public/images'
*** [err :: 97.107.134.41] : No such file or directory
*** [err :: 97.107.134.41] find: `/home/deploy/myapp/releases/20120208030228/public/stylesheets': No such file or directory
*** [err :: 97.107.134.41]
*** [err :: 97.107.134.41] find: `/home/deploy/myapp/releases/20120208030228/public/javascripts': No such file or directory
command finished in 73ms
firs off, there is no "20120208030228" release. Secondly, why is it looking for public/javascripts etc when it's a Rails 3 App?
EDIT - found the answer here: Capistrano for Rails 3.1
Added "set :normalize_asset_timestamps, false" to the deploy.rb file and the errors are gone!