Skip to content

Commit

Permalink
Fix unix build flags to be friendly to niche operating systems (#4214)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikmckenz authored Oct 17, 2023
1 parent b6714fa commit 21baa23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/desktop/desktop_platform_nixes.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build linux || freebsd
// +build linux freebsd
//go:build unix && !darwin
// +build unix,!darwin

package desktop

Expand Down
4 changes: 2 additions & 2 deletions internal/desktop/systray_nixes.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build linux || freebsd
// +build linux freebsd
//go:build !windows && !darwin
// +build !windows,!darwin

package desktop

Expand Down

0 comments on commit 21baa23

Please sign in to comment.