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 f5e38cf commit e3072a7Copy full SHA for e3072a7
1 file changed
build.scala
@@ -86,8 +86,13 @@ object LaikaBuild {
86
).toURL()
87
88
InputTree[IO]
89
+ // Exclude only the directory named .well-known when scanning parent dirs (e.g. src),
90
+ // so it is never included twice. We add it explicitly below so it appears on all platforms.
91
+ // (On Unix it's already skipped as hidden; on Windows it is included, causing duplicates.)
92
+ .withFileFilter(FileFilter.lift(_.name == ".well-known"))
93
.addDirectory("src")
- // Laika skips .dotfiles by default
94
+ // Laika skips .dotfiles by default (Unix); we add .well-known explicitly so
95
+ // it is included on all platforms at the correct virtual path.
96
.addDirectory("src/.well-known", Path.Root / ".well-known")
97
.addInputStream(
98
IO.blocking(securityPolicy.openStream()),
0 commit comments