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 807c78b commit bc21afeCopy full SHA for bc21afe
modules/core/src/main/scala/org/scalasteward/core/buildtool/mill/MillAlg.scala
@@ -95,8 +95,8 @@ final class MillAlg[F[_]](defaultResolver: Resolver)(implicit
95
buildRootDir: File
96
): F[Seq[Scope[List[Dependency]]]] =
97
for {
98
- buildConent <- fileAlg.readFile(buildRootDir / "build.sc")
99
- deps = buildConent.toList.map(content =>
+ buildContent <- fileAlg.readFile(buildRootDir / "build.sc")
+ deps = buildContent.toList.map(content =>
100
Scope(parser.parseMillPluginDeps(content, millVersion), List(defaultResolver))
101
)
102
} yield deps
0 commit comments