Skip to content

Commit

Permalink
Fix scripted
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Mar 9, 2025
1 parent 95fac04 commit 3e8f80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbt-app/src/sbt-test/actions/input-task-dyn/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lazy val root = (project in file(".")).
name := "run-test",
runFoo := Def.inputTaskDyn {
val args = Def.spaceDelimited().parsed
(Compile / runMainBlock).toTask(s" Foo " + args.mkString(" "))
(Compile / runMain).toTask(s" Foo " + args.mkString(" "))
}.evaluated,
check := {
val x = runFoo.toTask(" hi ho").value
Expand Down

0 comments on commit 3e8f80c

Please sign in to comment.