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 8b99777 commit 820e581Copy full SHA for 820e581
1 file changed
build.scala
@@ -81,6 +81,12 @@ object LaikaBuild {
81
import pink.cozydev.protosearch.ui.SearchUI
82
83
def input = {
84
+
85
+ if (sys.props("os.name").toLowerCase.startsWith("windows")) {
86
+ val wellKnownPath = java.nio.file.Paths.get("src/.well-known")
87
+ if (java.nio.file.Files.exists(wellKnownPath))
88
+ java.nio.file.Files.setAttribute(wellKnownPath, "dos:hidden", true)
89
+ }
90
val securityPolicy = new URI(
91
"https://raw.githubusercontent.com/typelevel/.github/refs/heads/main/SECURITY.md"
92
).toURL()
0 commit comments