You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Don't print `-Xprint-args ...` itself
- Render a programattically added single output directory as -d.
Zinc sets the output directory in this way.
```
scala> import scala.tools.nsc._; val g = new Global(new Settings); g.settings.outputDirs.setSingleOutput("/tmp"); g.settings.printArgs.value = "-"; val run = new g.Run(); run.compileSources(g.newSourceFile("") :: Nil)
-d
/tmp
<console>
import scala.tools.nsc._
```
0 commit comments