mirror of
https://github.com/rclone/rclone.git
synced 2025-08-17 09:01:33 +02:00
sftp: require go1.8+ after github.com/pkg/sftp update
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
// Package sftp provides a filesystem interface using github.com/pkg/sftp
|
||||
|
||||
// +build !plan9
|
||||
// +build !plan9,go1.8
|
||||
|
||||
package sftp
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
// +build !plan9,go1.8
|
||||
|
||||
package sftp
|
||||
|
||||
import (
|
||||
|
@ -2,6 +2,9 @@
|
||||
//
|
||||
// Automatically generated - DO NOT EDIT
|
||||
// Regenerate with: make gen_tests
|
||||
|
||||
// +build !plan9,go1.8
|
||||
|
||||
package sftp_test
|
||||
|
||||
import (
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Build for sftp for unsupported platforms to stop go complaining
|
||||
// about "no buildable Go source files "
|
||||
|
||||
// +build plan9
|
||||
// +build plan9 !go1.8
|
||||
|
||||
package sftp
|
||||
|
@ -1,3 +1,5 @@
|
||||
// +build !plan9,go1.8
|
||||
|
||||
package sftp
|
||||
|
||||
import "sync"
|
||||
|
@ -1,3 +1,5 @@
|
||||
// +build !plan9,go1.8
|
||||
|
||||
package sftp
|
||||
|
||||
import (
|
||||
|
Reference in New Issue
Block a user