mirror of
https://github.com/sbt/sbt.git
synced 2026-09-05 01:03:36 +02:00
Trim configuration names from mappings
cats (as of 213aab0) does that :-|
This commit is contained in:
@@ -26,7 +26,7 @@ object FromSbt {
|
||||
for {
|
||||
from <- froms.split(',')
|
||||
to <- tos.split(',')
|
||||
} yield (from, to)
|
||||
} yield (from.trim, to.trim)
|
||||
}
|
||||
|
||||
def attributes(attr: Map[String, String]): Map[String, String] =
|
||||
|
||||
Reference in New Issue
Block a user