chore(no-torrent)_: Added more complex build conditions to exclude OSes
This commit is contained in:
parent
4bb4ca5cce
commit
92c431f9cc
|
@ -1,5 +1,4 @@
|
|||
//go:build windows || linux || darwin
|
||||
// +build windows linux darwin
|
||||
//go:build (!android || !ios) && (windows || linux || darwin)
|
||||
|
||||
package communities
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//go:build android || ios
|
||||
// +build android ios
|
||||
//go:build (!windows || !linux || !darwin) && (android || ios)
|
||||
|
||||
package communities
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//go:build windows || linux || darwin
|
||||
// +build windows linux darwin
|
||||
//go:build (!android || !ios) && (windows || linux || darwin)
|
||||
|
||||
package communities
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//go:build android || ios
|
||||
// +build android ios
|
||||
//go:build (!windows || !linux || !darwin) && (android || ios)
|
||||
|
||||
package communities
|
||||
|
||||
|
|
Loading…
Reference in New Issue