mirror of
https://github.com/sbt/sbt.git
synced 2026-09-07 11:01:08 +02:00
When running commands like 'Test/definedTests' on multi-project builds, the output was showing raw Vector(...) format instead of nicely formatted per-item output. Before: [info] svc / Test / definedTests [info] Vector(Test FooSpec : ..., Test BarSpec : ..., ...) After: [info] svc / Test / definedTests [info] * Test FooSpec : ... [info] * Test BarSpec : ... The fix extends printSettings to check if values are Seq types in the multi-project case and format each item on its own line with a '* ' prefix, matching the single-project behavior.