You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
desc "Run rake task on server"
task :rake do
on roles(:app), in: :sequence, wait: 5 do
within current_path do
with rails_env: fetch(:rails_env) do
execute :rake, ENV['task']
end
end
end
end