enable building for solaris (#2183)

This commit is contained in:
Shivaram Lingamneni
2024-08-02 21:09:28 +02:00
committed by GitHub
parent 30f47a9b22
commit df6aa4c34b
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
//go:build plan9 || solaris
package flock
func TryAcquireFlock(path string) (fl Flocker, err error) {
return &noopFlocker{}, nil
}