Skip to content

Commit

Permalink
Trim versions coming from MILL_COMPILER_BRIDGE_VERSIONS env
Browse files Browse the repository at this point in the history
  • Loading branch information
lolgab committed Oct 5, 2023
1 parent a4e2b1b commit f052c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ val bridgeScalaVersions = Seq(
val compilerBridgeScalaVersions = interp.watchValue(sys.env.get("MILL_COMPILER_BRIDGE_VERSIONS")) match {
case None => Seq.empty[String]
case Some("all") => bridgeScalaVersions
case Some(versions) => versions.split(',').toSeq
case Some(versions) => versions.split(',').map(_.trim).toSeq
}
val bridgeVersion = "0.0.1"

Expand Down

0 comments on commit f052c4b

Please sign in to comment.