File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ object Build {
84
84
inputKey[Unit ](" run compiled binary using the correct classpath, or the user supplied classpath" )
85
85
86
86
// Compiles the documentation and static site
87
- lazy val genDocs = inputKey [Unit ](" run dottydoc to generate static documentation site" )
87
+ lazy val genDocs = taskKey [Unit ](" run dottydoc to generate static documentation site" )
88
88
89
89
// Shorthand for compiling a docs site
90
90
lazy val dottydoc = inputKey[Unit ](" run dottydoc" )
@@ -315,7 +315,7 @@ object Build {
315
315
fork in Test := true ,
316
316
parallelExecution in Test := false ,
317
317
318
- genDocs := Def .inputTaskDyn {
318
+ genDocs := Def .taskDyn {
319
319
val dottyLib = (packageAll in `dotty-compiler`).value(" dotty-library" )
320
320
val dottyInterfaces = (packageAll in `dotty-compiler`).value(" dotty-interfaces" )
321
321
val otherDeps = (dependencyClasspath in Compile ).value.map(_.data).mkString(" :" )
@@ -332,7 +332,7 @@ object Build {
332
332
(runMain in Compile ).toTask(
333
333
s """ dotty.tools.dottydoc.Main ${args.mkString(" " )} ${sources.mkString(" " )}"""
334
334
)
335
- }.evaluated ,
335
+ }.value ,
336
336
337
337
dottydoc := Def .inputTaskDyn {
338
338
val args : Seq [String ] = spaceDelimited(" <arg>" ).parsed
You can’t perform that action at this time.
0 commit comments