Skip to content

Commit 2e14c8c

Browse files
committed
Merge pull request #36 from os97673/RUBY-14530
explicitly convert Debbuger.cli_debug to string to be able to store it i...
2 parents d9e3793 + 20d78a7 commit 2e14c8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/rdebug-ide

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ if options.dispatcher_port != -1
9595
old_opts = ENV['RUBYOPT']
9696
ENV['RUBYOPT'] = "-r#{File.expand_path(File.dirname(__FILE__))}/../lib/ruby-debug-ide/multiprocess/starter"
9797
ENV['RUBYOPT'] += " #{old_opts}" if old_opts
98-
ENV['DEBUGGER_CLI_DEBUG'] = Debugger.cli_debug
98+
ENV['DEBUGGER_CLI_DEBUG'] = Debugger.cli_debug.to_s
9999
end
100100

101101
if options.int_handler

0 commit comments

Comments
 (0)