deploy: Do not compile in Azure on Solaris
authorFazal Majid <github@sentfrom.com>
Fri, 13 Sep 2019 12:53:36 +0000 (05:53 -0700)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 13 Sep 2019 12:53:36 +0000 (14:53 +0200)
See #6324

deploy/deploy.go
deploy/deploy_azure.go [new file with mode: 0644]

index 6abb9e24e5c695f81d455b04ce22cbbc6eca48d8..9092431a597d479a7089b7da2860adfa4289fd75 100644 (file)
@@ -38,10 +38,9 @@ import (
        "golang.org/x/text/unicode/norm"
 
        "gocloud.dev/blob"
-       _ "gocloud.dev/blob/azureblob" // import
-       _ "gocloud.dev/blob/fileblob"  // import
-       _ "gocloud.dev/blob/gcsblob"   // import
-       _ "gocloud.dev/blob/s3blob"    // import
+       _ "gocloud.dev/blob/fileblob" // import
+       _ "gocloud.dev/blob/gcsblob"  // import
+       _ "gocloud.dev/blob/s3blob"   // import
 )
 
 // Deployer supports deploying the site to target cloud providers.
diff --git a/deploy/deploy_azure.go b/deploy/deploy_azure.go
new file mode 100644 (file)
index 0000000..6251429
--- /dev/null
@@ -0,0 +1,21 @@
+// Copyright 2019 The Hugo Authors. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// +build !solaris
+
+package deploy
+
+import (
+       _ "gocloud.dev/blob"
+       _ "gocloud.dev/blob/azureblob" // import
+)