mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 13:37:00 +08:00
8ac2f52b6e
The library is no longer supported on macOS.
14 lines
396 B
Go
14 lines
396 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 darwin,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
|