Skip to content

Commit

Permalink
feat: differentation of solaris and illumos (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Jul 2, 2024
1 parent c541671 commit b15a054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flock_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Use of this source code is governed by the BSD 3-Clause
// license that can be found in the LICENSE file.

//go:build !aix && !solaris && !windows
//go:build !aix && (!solaris || illumos) && !windows

package flock

Expand Down
2 changes: 1 addition & 1 deletion flock_unix_variants.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// This code is adapted from the Go package:
// cmd/go/internal/lockedfile/internal/filelock

//go:build aix || solaris
//go:build aix || (solaris && !illumos)

package flock

Expand Down

0 comments on commit b15a054

Please sign in to comment.