1
mirror of https://github.com/rclone/rclone synced 2024-12-28 21:03:45 +01:00

serve ftp: don't compile on < go1.13 after dependency update

This commit is contained in:
Nick Craig-Wood 2020-06-27 16:11:30 +01:00
parent 2a3b377d34
commit 0031130111
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
// Package ftp implements an FTP server for rclone
//+build !plan9
//+build !plan9,go1.13
package ftp

View File

@ -3,7 +3,7 @@
//
// We skip tests on platforms with troublesome character mappings
//+build !windows,!darwin,!plan9
//+build !windows,!darwin,!plan9,go1.13
package ftp

View File

@ -1,7 +1,7 @@
// Build for unsupported platforms to stop go complaining
// about "no buildable Go source files "
// +build plan9
// +build plan9 !go1.13
package ftp