-
Notifications
You must be signed in to change notification settings - Fork 492
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Can't invoke rake task from script #615
Comments
I have the same problem. Actually I can run from terminal: mina rake[sitemap:create] |
Similar problem here, if I invoke two, or more, consecutive command (rake commands), only the first is called. If I have other command, but not invokes, the commands are executed. I'm currently using mina 0.3.8. |
When using task :backup_db do
invoke :rake, 'backup:db'
end or, with Rails: task :backup_db do
invoke :rails, 'backup:db'
end |
When i run my rake task directly
mina staging rake[backup:db]
it's working fine, but when i try to do this thru deploy-script bymina staging backup_db
i got errorDon't know how to build task 'rake[backup:db]'
The text was updated successfully, but these errors were encountered: