Skip to content

Commit

Permalink
Fix errors in build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
froth committed Feb 24, 2025
1 parent 7a338bf commit 4e4b36e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import scala.sys.process._

// This build is for this Giter8 template.
// To test the template run `g8` or `g8Test` from the sbt session.
// See http://www.foundweekends.org/giter8/testing.html#Using+the+Giter8Plugin for more details.
Expand Down Expand Up @@ -52,7 +54,7 @@ lazy val root = project
}
},
Test / test := {
val _ = (Test / g8TestMill).toTask("").value
val _ = (Test / g8TestMill).toTask(_ => "").value
},
scriptedLaunchOpts ++= List(
"-Xms1024m",
Expand Down

0 comments on commit 4e4b36e

Please sign in to comment.