fix: make sure darwin and unix files exclude each other

unix-build
sammyette 2024-07-19 09:37:11 -04:00
parent 337337fd70
commit 7178410746
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
//go:build darwin
//go:build !unix,darwin
package main

View File

@ -1,4 +1,4 @@
//go:build unix
//go:build !darwin,unix
package main