Close out the repository audit

This commit is contained in:
2026-08-13 13:52:16 +00:00
parent 13b06039b1
commit fc8ddada9a
29 changed files with 421 additions and 263 deletions

View File

@@ -0,0 +1,12 @@
//go:build windows
package testutil
import (
"errors"
"syscall"
)
func platformSymlinkUnavailable(err error) bool {
return errors.Is(err, syscall.ERROR_PRIVILEGE_NOT_HELD)
}