Closed jakoss closed 8 years ago
Ok i found out what was a problem. In version 1 we need to append to shared_dirs instead of creating whole table. So i done:
set :shared_dirs, fetch(:shared_dirs, []).push('log').push('public/uploads').push('node_modules')
and it's working now
Thanks! I was having the same issue!
Don't mean to tack on to a closed thread but you can also do something like this:
shared_dires = %w{log public/uploads node_modules}
set :shared_dirs, fetch(:shared_dirs, []).push(*shared_dirs)
I'm using this script (it's upgraded from mina 0.3)
The problem is -
bundle install
is downloading all gems from scratch every time deploy is done. It was working well on version 0.3.Any idea what am i doing wrong?