Skip to content

Commit

Permalink
Use our custom bin/dev wrapper instead of bundle exec
Browse files Browse the repository at this point in the history
This is required until Shopify#389 is resolved.
  • Loading branch information
louim committed Jul 18, 2024
1 parent b39a8de commit e9b7696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ruby_lsp/ruby_lsp_rails/runner_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def initialize
end

stdin, stdout, stderr, wait_thread = Bundler.with_original_env do
Open3.popen3("bundle", "exec", "rails", "runner", "#{__dir__}/server.rb", "start")
Open3.popen3("bin/dev", "rails", "runner", "#{__dir__}/server.rb", "start")
end

@stdin = T.let(stdin, IO)
Expand Down

0 comments on commit e9b7696

Please sign in to comment.