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 Dec 10, 2024
1 parent e28e268 commit c009ea4
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 @@ -71,7 +71,7 @@ def initialize(outgoing_queue)
log_message("Ruby LSP Rails booting server")

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 c009ea4

Please sign in to comment.