Skip to content

Commit

Permalink
fix save-expect again
Browse files Browse the repository at this point in the history
Since 3f644e7, save-expect would only run for Scala 2 despite saying it was
running only for Scala 3. Better stay away from using "all" with input tasks.
  • Loading branch information
bjaglin committed Jan 16, 2025
1 parent ecfb32c commit 6fbf762
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
.map { sv =>
s"integration${asProjectSuffix(sv)} / Test / runMain scalafix.tests.util.SaveExpect"
}
.mkString("all ", " ", "") :: state
.foldLeft(state) { (state, command) =>
command :: state
}
},
commands += Command.command("ci-docs") { state =>
"docs2_13/run" :: // reduce risk of errors on deploy-website.yml
Expand Down

0 comments on commit 6fbf762

Please sign in to comment.