-
Notifications
You must be signed in to change notification settings - Fork 458
New issue
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
Update to be able to run on 3.4 with frozen strings #1080
Conversation
57827a6
to
5f9f70b
Compare
Co-authored-by: Sijawusz Pur Rahnama <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tweak spacing for clean output (and so tests pass)
lib/kamal/commands/base.rb
Outdated
@@ -11,7 +11,7 @@ def initialize(config) | |||
end | |||
|
|||
def run_over_ssh(*command, host:) | |||
"ssh #{ssh_proxy_args} -t #{config.ssh.user}@#{host} -p #{config.ssh.port} '#{command.join(" ").gsub("'", "'\\\\''")}'".squish | |||
"ssh#{ssh_proxy_args} -t #{config.ssh.user}@#{host} -p #{config.ssh.port} '#{command.join(" ").gsub("'", "'\\\\''")}'".squish |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm i thought i had tests passing with this. But i think with this new approach you can remove squish at the end
Co-authored-by: Sijawusz Pur Rahnama <[email protected]>
No description provided.