Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ object LaikaBuild {
import pink.cozydev.protosearch.ui.SearchUI

def input = {

if (sys.props("os.name").toLowerCase.startsWith("windows")) {
val wellKnownPath = java.nio.file.Paths.get("src/.well-known")
if (java.nio.file.Files.exists(wellKnownPath))
java.nio.file.Files.setAttribute(wellKnownPath, "dos:hidden", true)
}
val securityPolicy = new URI(
"https://raw.githubusercontent.com/typelevel/.github/refs/heads/main/SECURITY.md"
).toURL()
Expand Down
Loading