Skip to content

Commit cfa16f7

Browse files
committedJan 9, 2023
More specific cross-platform constraints
1 parent 1a8487e commit cfa16f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎implant/sliver/handlers/rpc-handlers-cgo_linux.go ‎implant/sliver/handlers/rpc-handlers-cgo.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:build 386 || amd64
1+
//go:build (linux && (386 || amd64)) || (darwin && (amd64 || arm64)) || (windows && amd64)
22

33
package handlers
44

‎implant/sliver/handlers/rpc-handlers-generic_linux.go ‎implant/sliver/handlers/rpc-handlers-generic.go

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

33
package handlers
44

0 commit comments

Comments
 (0)
Please sign in to comment.