Skip to content

Commit a0beeaf

Browse files
committed
Scan project/project/... folders
1 parent 6f2da8b commit a0beeaf

File tree

1 file changed

+1
-1
lines changed
  • modules/core/src/main/scala/org/scalasteward/core/buildtool/sbt

1 file changed

+1
-1
lines changed

modules/core/src/main/scala/org/scalasteward/core/buildtool/sbt/SbtAlg.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ final class SbtAlg[F[_]](config: Config)(implicit
110110
projectDir = buildRootDir / "project"
111111
files0 <- (
112112
fileAlg.walk(buildRootDir, 1).filter(_.extension.contains(".sbt")) ++
113-
fileAlg.walk(projectDir, 1).filter(_.extension.exists(Set(".sbt", ".scala")))
113+
fileAlg.walk(projectDir).filter(_.extension.exists(Set(".sbt", ".scala")))
114114
).compile.toList
115115
_ <- Nel.fromList(files0).fold(F.unit) { files1 =>
116116
scalafixCli.runMigration(buildRootDir, files1, migration)

0 commit comments

Comments
 (0)