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

This commit is contained in:
Nick Craig-Wood 2020-06-27 16:10:27 +01:00
parent 2aed3bf9ab
commit 2a3b377d34
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
// Package azureblob provides an interface to the Microsoft Azure blob object storage system
// +build !plan9,!solaris
// +build !plan9,!solaris,go1.13
package azureblob

View File

@ -1,4 +1,4 @@
// +build !plan9,!solaris
// +build !plan9,!solaris,go1.13
package azureblob

View File

@ -1,6 +1,6 @@
// Test AzureBlob filesystem interface
// +build !plan9,!solaris
// +build !plan9,!solaris,go1.13
package azureblob

View File

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