mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
07dee18d6b
binaries installed via Homebrew - Fixes #4775 Signed-off-by: Anagh Kumar Baranwal <6824881+darthShadow@users.noreply.github.com>
14 lines
382 B
Go
14 lines
382 B
Go
// Build for mount for unsupported platforms to stop go complaining
|
|
// about "no buildable Go source files "
|
|
|
|
// Invert the build constraint: linux,go1.13 freebsd,go1.13
|
|
//
|
|
// !((linux&&go1.13) || (freebsd&&go1.13))
|
|
// == !(linux&&go1.13) && !(freebsd&&go1.13))
|
|
// == (!linux || !go1.13) && (!freebsd || !go1.13))
|
|
|
|
// +build !linux !go1.13
|
|
// +build !freebsd !go1.13
|
|
|
|
package mount
|