It appears something has changed in latest capistrano and now it requires #{scm}:set_current_revision
I have forked the code and added the following definition
Rake::Task.define_task("#{scm}:set_current_revision") do
invoke "rsync:current_revision"
end
but not sure how to implement
so far I have this, but the system is not deploying the proper files (Ubuntu 14.04)
task :current_revision => %w[set_current_revision]
Any thoughts?
It appears something has changed in latest capistrano and now it requires
#{scm}:set_current_revisionI have forked the code and added the following definition
but not sure how to implement
so far I have this, but the system is not deploying the proper files (Ubuntu 14.04)
Any thoughts?