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.
2 parents 1f4c65b + c1774d4 commit 868fc9bCopy full SHA for 868fc9b
project/Build.scala
@@ -756,10 +756,12 @@ object Build {
756
val sbtOrg = "org.scala-sbt"
757
val bridgeDirectoryPattern = s"*${dottyVersion}*"
758
759
+ val log = streams.value.log
760
+ log.info("Cleaning the dotty-sbt-bridge cache")
761
IO.delete((file(home) / ".ivy2" / "cache" / sbtOrg * bridgeDirectoryPattern).get)
762
IO.delete((file(home) / ".sbt" / "boot" * "scala-*" / sbtOrg / "sbt" * "*" * bridgeDirectoryPattern).get)
763
},
- packageSrc in Compile := (packageSrc in Compile).dependsOn(cleanSbtBridge).value,
764
+ compile in Compile := (compile in Compile).dependsOn(cleanSbtBridge).value,
765
description := "sbt compiler bridge for Dotty",
766
resolvers += Resolver.typesafeIvyRepo("releases"), // For org.scala-sbt:api
767
libraryDependencies ++= Seq(
0 commit comments