Skip to content

Commit

Permalink
build: fix dirlock build tags for windows build
Browse files Browse the repository at this point in the history
needs to be "not windows AND not illumos"
was OR - always true because windows is not illumos
(and illumos was broken similarly)
  • Loading branch information
ploxiln committed Oct 29, 2019
1 parent dbfb2d8 commit 2a46de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/dirlock/dirlock.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !windows !illumos
// +build !windows,!illumos

package dirlock

Expand Down

0 comments on commit 2a46de8

Please sign in to comment.