Skip to content

Commit 1073a79

Browse files
committed
sbt-dotty: Remove no longer needed .inheritIO
We now explicitly set .redirect{Input,Output,Error}
1 parent 35b9d53 commit 1073a79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sbt-dotty/src/dotty/tools/sbtplugin/DottyIDEPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ object DottyIDEPlugin extends AutoPlugin {
154154
* @param outputCallback If not None, pass the command output to this callback instead of writing it to stdout.
155155
*/
156156
def runProcess(cmd: Seq[String], wait: Boolean = false, directory: Option[File] = None, outputCallback: Option[BufferedReader => Unit] = None): Unit = {
157-
val pb = new ProcessBuilder(prepareCommand(cmd): _*).inheritIO()
157+
val pb = new ProcessBuilder(prepareCommand(cmd): _*)
158158

159159
directory match {
160160
case Some(dir) =>

0 commit comments

Comments
 (0)