forked from TrueCloudLab/rclone
serve ftp: don't compile on < go1.13 after dependency update
This commit is contained in:
parent
2a3b377d34
commit
0031130111
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
// Package ftp implements an FTP server for rclone
|
// Package ftp implements an FTP server for rclone
|
||||||
|
|
||||||
//+build !plan9
|
//+build !plan9,go1.13
|
||||||
|
|
||||||
package ftp
|
package ftp
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
//
|
//
|
||||||
// We skip tests on platforms with troublesome character mappings
|
// We skip tests on platforms with troublesome character mappings
|
||||||
|
|
||||||
//+build !windows,!darwin,!plan9
|
//+build !windows,!darwin,!plan9,go1.13
|
||||||
|
|
||||||
package ftp
|
package ftp
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// Build for unsupported platforms to stop go complaining
|
// Build for unsupported platforms to stop go complaining
|
||||||
// about "no buildable Go source files "
|
// about "no buildable Go source files "
|
||||||
|
|
||||||
// +build plan9
|
// +build plan9 !go1.13
|
||||||
|
|
||||||
package ftp
|
package ftp
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue