Skip to content

Commit

Permalink
fixed bug where bazel automatically enables curses
Browse files Browse the repository at this point in the history
Bazel is still run using a PtyCommandLine and seems to automatically enable curses when using the old sync view.
  • Loading branch information
LeFrosch committed Dec 9, 2024
1 parent d5f47f3 commit 7953fd0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ class BazelExecService(private val project: Project) : Disposable {
// the old sync view does not use a PTY based terminal
if (BuildViewMigration.present(ctx)) {
cmdBuilder.addBlazeFlags("--curses=yes")
} else {
cmdBuilder.addBlazeFlags("--curses=no")
}

val cmd = cmdBuilder.build()
Expand Down

0 comments on commit 7953fd0

Please sign in to comment.