Skip to content

Commit

Permalink
More specific cross-platform constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
moloch-- committed Jan 9, 2023
1 parent 1a8487e commit cfa16f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build 386 || amd64
//go:build (linux && (386 || amd64)) || (darwin && (amd64 || arm64)) || (windows && amd64)

package handlers

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !386 && !amd64
//go:build !((linux && (386 || amd64)) || (darwin && (amd64 || arm64)) || (windows && amd64))

package handlers

Expand Down

0 comments on commit cfa16f7

Please sign in to comment.