Trim configuration names from mappings

cats (as of 213aab0) does that :-|
This commit is contained in:
Alexandre Archambault 2015-12-30 01:34:41 +01:00
parent f9a2ca5329
commit 41ba3c6c75
1 changed files with 1 additions and 1 deletions

View File

@ -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] =