
FIXED: * `envs/funcs.go:78:3: unknown field IgnoreWhiteSpace in struct literal of type EnvErrNoVal, but does have IgnoreWhitespace` * `envs/funcs_enverrnoval.go:15:8: sb.WasFound undefined (type *strings.Builder has no field or method WasFound)`
16 lines
417 B
Go
16 lines
417 B
Go
//go:build windows
|
|
|
|
package paths
|
|
|
|
const (
|
|
/*
|
|
MaxSymLinkLevel on Windows is weird; Microsoft calls them "reparse points".
|
|
|
|
And it changes on the Windows version you're on, but it's been 63 past Windows Server 2003/Windows XP.
|
|
They're *very* EOL, so I'm completely ignoring them.
|
|
|
|
https://learn.microsoft.com/en-us/windows/win32/fileio/symbolic-link-programming-consideration
|
|
*/
|
|
MaxSymlinkLevel uint = 63
|
|
)
|