2016-07-18 00:03:23 +02:00
|
|
|
// Build for mount for unsupported platforms to stop go complaining
|
|
|
|
// about "no buildable Go source files "
|
|
|
|
|
2020-02-26 17:28:55 +01:00
|
|
|
// Invert the build constraint: linux,go1.13 darwin,go1.13 freebsd,go1.13
|
2020-01-08 09:02:01 +01:00
|
|
|
//
|
2020-10-29 13:13:41 +01:00
|
|
|
// !((linux&&go1.13) || (freebsd&&go1.13))
|
|
|
|
// == !(linux&&go1.13) && !(freebsd&&go1.13))
|
|
|
|
// == (!linux || !go1.13) && (!freebsd || !go1.13))
|
2020-01-08 09:02:01 +01:00
|
|
|
|
2020-02-26 17:28:55 +01:00
|
|
|
// +build !linux !go1.13
|
|
|
|
// +build !freebsd !go1.13
|
2016-07-18 00:03:23 +02:00
|
|
|
|
|
|
|
package mount
|