File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ object Main:
85
85
println(" COMMAND is one of: publish doc" )
86
86
println(" Available projects are:" )
87
87
allProjects.foreach { k =>
88
- println(s " \t $k " )
88
+ println(s " \t ${k.project} " )
89
89
}
90
90
sys.exit(1 )
91
91
Original file line number Diff line number Diff line change @@ -160,10 +160,9 @@ final case class SbtCommunityProject(
160
160
""" set testOptions in Global += Tests.Argument(TestFramework("munit.Framework"), "+l"); """
161
161
++ s " $baseCommand$sbtTestCommand"
162
162
163
- override val publishCommand = if sbtPublishCommand eq null then null else
164
- val disableDocCommand =
165
- if sbtDocCommand eq null then " " else " set every useScaladoc := false;"
166
- s " $baseCommand$disableDocCommand$sbtPublishCommand"
163
+ override val publishCommand =
164
+ if sbtPublishCommand eq null then null else s " $baseCommand$sbtPublishCommand"
165
+
167
166
override val docCommand =
168
167
if sbtDocCommand eq null then null else
169
168
val cmd = if sbtDocCommand.startsWith(" ;" ) then sbtDocCommand else s " ; $sbtDocCommand"
@@ -627,7 +626,7 @@ object projects:
627
626
sbtPublishCommand = " publishLocal" ,
628
627
dependencies = List (scalatest)
629
628
)
630
-
629
+
631
630
lazy val perspective = SbtCommunityProject (
632
631
project = " perspective" ,
633
632
// No library with easy typeclasses to verify data against exist for Dotty, so no tests yet
You can’t perform that action at this time.
0 commit comments