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
works:
server "app101-prod.totally-not-makandra.de", user: "deploy_p", roles: %w[app web db cron], primary: true
breaks:
server "app101-prod.totally-not-makandra.de", user: "deploy_p", roles: %w[app web db], primary: true
i.e. geordi shell/console break because @config.user(server) is nil. Like in Util#shell:
geordi shell/console
@config.user(server)
Util#shell
note 'Connecting to ' + server.to_s Util.system! 'ssh', "#{ @config.user(server) }@#{ server }", '-t', remote_command
If it's easy to fix (which I hope) I might tackle it myself, for now I'll revert my neatly aligned and 80 char width configuration :)
The text was updated successfully, but these errors were encountered:
We're currently grepping the deployment config files to avoid booting the bundle and Capistrano into our process.
You might be able to fix this by adding a /m modifier to the regexps in the quoted file, to make . match newlines.
/m
.
Sorry, something went wrong.
Fixed in #51 and included in release 1.10.0.
1.10.0
codener
denzelem
No branches or pull requests
works:
breaks:
i.e.
geordi shell/console
break because@config.user(server)
is nil. Like inUtil#shell
:If it's easy to fix (which I hope) I might tackle it myself, for now I'll revert my neatly aligned and 80 char width configuration :)
The text was updated successfully, but these errors were encountered: