We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a97fc5 commit ed1fae1Copy full SHA for ed1fae1
modules/core/src/main/scala/org/scalasteward/core/buildtool/sbt/SbtAlg.scala
@@ -54,7 +54,7 @@ final class SbtAlg[F[_]](config: Config)(implicit
54
private def metaBuildsCount(buildRootDir: File): F[Int] =
55
fs2.Stream
56
.iterate(buildRootDir / project)(_ / project)
57
- .take(5L) // Use an upper bound for the meta-builds count to prevent DOS attacks.
+ .take(5L) // Use an upper bound for the meta-builds count to prevent DoS attacks.
58
.evalMap(fileAlg.isDirectory)
59
.takeWhile(identity)
60
.compile
0 commit comments