mount: don't build on go1.10 as bazil/fuse no longer supports it

This commit is contained in:
Nick Craig-Wood 2020-01-08 08:02:01 +00:00
parent b6e86b2c7f
commit 706da80d88
9 changed files with 36 additions and 8 deletions

20
backend/cache/cache_mount_other_test.go vendored Normal file
View file

@ -0,0 +1,20 @@
// +build !linux !go1.11
// +build !darwin !go1.11
// +build !freebsd !go1.11
// +build !windows
package cache_test
import (
"testing"
"github.com/rclone/rclone/fs"
)
func (r *run) mountFs(t *testing.T, f fs.Fs) {
panic("mountFs not defined for this platform")
}
func (r *run) unmountFs(t *testing.T, f fs.Fs) {
panic("unmountFs not defined for this platform")
}