We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e403cb commit e354f84Copy full SHA for e354f84
1 file changed
src/main/scala/com/ossuminc/sbt/helpers/Laminar.scala
@@ -22,8 +22,8 @@ object Laminar extends AutoPluginHelper {
22
val v_laminext = laminextVersion.getOrElse("0.17.1")
23
val org = v_laminext match {
24
case s: String if s.startsWith("0.") =>
25
- val strs = s.split(".")
26
- require(strs.length > 2, "Invalid 3 part laminex version")
+ val strs = s.split('.')
+ require(strs.length > 2, s"Invalid 3 part laminext version: $s")
27
val minor = strs(1).toInt
28
if (minor < 17) "io.laminext"
29
else if (minor >= 18) "dev.laminext"
0 commit comments