We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b8fb81 commit 4134f2aCopy full SHA for 4134f2a
1 file changed
project-builder/sbt/CommunityBuildPlugin.scala
@@ -589,7 +589,7 @@ object CommunityBuildPlugin extends AutoPlugin {
589
val compileResult = mayRetry(Compile / compile)(eval)
590
591
val shouldBuildDocs = eval(Compile / doc / skip) match {
592
- case EvalResult.Value(skip, _) => !skip
+ case EvalResult.Value(skip, _) => false
593
case _ => false
594
}
595
val docsResult = mayRetry(Compile / doc) {
@@ -611,7 +611,7 @@ object CommunityBuildPlugin extends AutoPlugin {
611
)
612
613
val shouldPublish = eval(Compile / publish / skip) match {
614
615
616
617
val publishResult = PublishResult(
0 commit comments