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 53fd1ec commit 3574a3eCopy full SHA for 3574a3e
1 file changed
core/api/src/mill/api/internal/SubfolderModule.scala
@@ -15,7 +15,7 @@ object SubfolderModule {
15
val prefix = mill.constants.CodeGenConstants.globalPackagePrefix
16
val stripped = pkg.stripPrefix(prefix)
17
if (stripped.isEmpty || stripped == ".") Seq.empty
18
- else stripped.stripPrefix(".").split('.').toSeq
+ else stripped.stripPrefix(".").split('.').map(scala.reflect.NameTransformer.decode).toSeq
19
}
20
21
0 commit comments