Skip to content

Commit 2c0f5bd

Browse files
chore: update build settings
1 parent 356e62f commit 2c0f5bd

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lazy val root = (project withId "stryker4s" in file("."))
1010
// Publish locally for sbt plugin testing
1111
addCommandAlias(
1212
"publishPluginLocal",
13-
"set ThisBuild / version := \"0.0.0-TEST-SNAPSHOT\"; sbtPlugin/publishLocal"
13+
"set ThisBuild / version := \"0.0.0-TEST-SNAPSHOT\"; sbtPlugin/publishLocal; sbtPlugin3/publishLocal"
1414
),
1515
// Publish to .m2 folder for Maven plugin testing
1616
addCommandAlias(

project/MillScripted.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ object MillScripted {
4848
val command = Seq(s".${separator}mill", "--no-daemon") ++ args
4949
val os = sys.props("os.name").toLowerCase
5050
val panderToWindows = os match {
51-
case n if n contains "windows" => Seq("cmd", "/C") ++ command
52-
case _ => command
51+
case n if n.contains("windows") => Seq("cmd", "/C") ++ command
52+
case _ => command
5353
}
5454
log.info(s"Running: ${panderToWindows.mkString(" ")}")
5555
val exit = Process(panderToWindows, mutate).!(logger)

project/Release.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ object Release {
99
private val stryker4sReleaseAll = "stryker4sReleaseAll"
1010
// Helper command names
1111
private val stryker4sMvnDeploy = "stryker4sMvnDeploy"
12-
private val publishM2Core = "core/publishM2"
12+
private val publishM2Core = "core3/publishM2"
1313
private val crossPublishSigned = "publishSigned"
1414

1515
lazy val releaseCommands: Setting[Seq[Command]] = commands ++= Seq(

0 commit comments

Comments
 (0)