File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/org/truffleruby/stdlib/readline Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 55
55
import org .graalvm .shadowed .org .jline .terminal .Terminal ;
56
56
import org .graalvm .shadowed .org .jline .terminal .impl .DumbTerminal ;
57
57
import org .graalvm .shadowed .org .jline .terminal .impl .ExecPty ;
58
+ import org .graalvm .shadowed .org .jline .terminal .spi .TerminalProvider ;
58
59
import org .truffleruby .RubyContext ;
59
60
import org .truffleruby .RubyLanguage ;
60
61
import org .truffleruby .core .support .RubyIO ;
@@ -124,7 +125,7 @@ private ConsoleHolder(
124
125
terminal = new PosixSysTerminalKeepSignalHandlers (
125
126
"TruffleRuby" ,
126
127
getType (),
127
- ExecPty .current (),
128
+ ExecPty .current (TerminalProvider . Stream . Output ),
128
129
StandardCharsets .UTF_8 );
129
130
} else {
130
131
try (Terminal inherit = new DumbTerminal (in .getIn (), out .getOut ())) {
You can’t perform that action at this time.
0 commit comments