Skip to content

Commit

Permalink
Allow to circumvent Scala version checks
Browse files Browse the repository at this point in the history
Just in case. Having issues with locally published Scala versions right
now, so I'd rather not have this check.
  • Loading branch information
alexarchambault committed Mar 3, 2023
1 parent e327ca4 commit 035b445
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ final case class BuildOptions(
val svOpt: Option[String] = scalaOptions.scalaVersion match {
case Some(MaybeScalaVersion(None)) =>
None
case Some(MaybeScalaVersion(Some(svInput))) if svInput.endsWith("!") =>
Some(svInput.stripSuffix("!"))
case Some(MaybeScalaVersion(Some(svInput))) =>
val sv = value {
svInput match {
Expand Down

0 comments on commit 035b445

Please sign in to comment.