Take for example the command sbt "inspect tree clean"
.
This truncates its output (with ..
) to the width of the terminal, or 40 characters if redirected to a file.
C:\dev>sbt "inspect tree clean"
[info] Loading project definition from C:\dev\project
[info] Set current project to dev (in build file:/C:/dev/)
[info] *:clean = Task[Unit]
[info] +-*:clean::streams = Task[sb..
[info] | +-*/*:streamsManager = Tas..
How can I make it print out the entire line without any truncation? I've searched the documentation at scala-sbt.org but cannot find anything relevant.
I'm using sbt 0.13.8 on Windows.