Skip to content

Commit

Permalink
Update to be able to run on 3.4 with frozen strings
Browse files Browse the repository at this point in the history
  • Loading branch information
npezza93 committed Oct 8, 2024
1 parent 7b48648 commit 5f9f70b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- "3.1"
- "3.2"
- "3.3"
- "3.4.0-preview2"
gemfile:
- Gemfile
- gemfiles/rails_edge.gemfile
Expand All @@ -41,6 +42,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Remove gemfile.lock
run: rm Gemfile.lock

- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -49,3 +53,5 @@ jobs:

- name: Run tests
run: bin/test
env:
RUBYOPT: ${{ matrix.ruby-version == '3.4.0-preview2' && '--enable=frozen-string-literal' || '' }}
8 changes: 4 additions & 4 deletions lib/kamal/commands/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ def initialize(config)
end

def run_over_ssh(*command, host:)
"ssh".tap do |cmd|
"ssh".then do |cmd|
if config.ssh.proxy && config.ssh.proxy.is_a?(Net::SSH::Proxy::Jump)
cmd << " -J #{config.ssh.proxy.jump_proxies}"
cmd = "#{cmd} -J #{config.ssh.proxy.jump_proxies}"
elsif config.ssh.proxy && config.ssh.proxy.is_a?(Net::SSH::Proxy::Command)
cmd << " -o ProxyCommand='#{config.ssh.proxy.command_line_template}'"
cmd = "#{cmd} -o ProxyCommand='#{config.ssh.proxy.command_line_template}'"
end
cmd << " -t #{config.ssh.user}@#{host} -p #{config.ssh.port} '#{command.join(" ").gsub("'", "'\\\\''")}'"
"#{cmd} -t #{config.ssh.user}@#{host} -p #{config.ssh.port} '#{command.join(" ").gsub("'", "'\\\\''")}'"
end
end

Expand Down

0 comments on commit 5f9f70b

Please sign in to comment.