2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-03-12 17:30:40 +00:00

fix: make sure darwin and unix files exclude each other

This commit is contained in:
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