Merge pull request #7817 from xuwei-k/sbt-on-command

[2.x] fix deprecated colon syntax in build.sbt
This commit is contained in:
eugene yokota 2024-10-22 23:51:43 -04:00 committed by GitHub
commit c2a0f162ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ lazy val sbtRoot: Project = (project in file("."))
Utils.noPublish,
publishLocal := {},
Global / commands += Command
.single("sbtOn")((state, dir) => s"sbtProj/test:runMain sbt.RunFromSourceMain $dir" :: state),
.single("sbtOn")((state, dir) => s"sbtProj/Test/runMain sbt.RunFromSourceMain $dir" :: state),
mimaSettings,
mimaPreviousArtifacts := Set.empty,
buildThinClient := (sbtClientProj / buildThinClient).evaluated,