mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 08:54:10 +01:00
9 lines
209 B
Go
9 lines
209 B
Go
// Build for mount for unsupported platforms to stop go complaining
|
|
// about "no buildable Go source files "
|
|
|
|
//go:build !linux && (!darwin || !amd64)
|
|
// +build !linux
|
|
// +build !darwin !amd64
|
|
|
|
package mount2
|