We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the simple Rakefile:
require 'rake' desc "login app1.dev" task :app1 do command="ssh app1.dev.example.com bash" system(command) end
When run rake app1, it is no prompt, I have to ctrl+c to cancel it.
rake app1
ctrl+c
if I change to command="ssh app1.dev.example.com pwd", show me the path, exist, and back to my local shell.
command="ssh app1.dev.example.com pwd"
What I need is, after login app1.dev, stay and I can continuos the job on server app1.dev
app1.dev
The text was updated successfully, but these errors were encountered:
This isn't a rake bug.
Try ssh -t Or the rake-remote_task gem
ssh -t
Sorry, something went wrong.
No branches or pull requests
With the simple Rakefile:
When run
rake app1
, it is no prompt, I have toctrl+c
to cancel it.if I change to
command="ssh app1.dev.example.com pwd"
, show me the path, exist, and back to my local shell.What I need is, after login
app1.dev
, stay and I can continuos the job on server app1.devThe text was updated successfully, but these errors were encountered: