diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/build/azure.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/build/azure.go b/internal/build/azure.go index 124c3f6ec..ceac6a4cd 100644 --- a/internal/build/azure.go +++ b/internal/build/azure.go @@ -16,6 +16,7 @@ package build import ( + "fmt" "os" "github.com/Azure/azure-sdk-for-go/storage" @@ -36,6 +37,11 @@ type AzureBlobstoreConfig struct { // // See: https://msdn.microsoft.com/en-us/library/azure/dd179451.aspx#Anchor_3 func AzureBlobstoreUpload(path string, name string, config AzureBlobstoreConfig) error { + if *DryRunFlag { + fmt.Printf("would upload %q to %s/%s/%s\n", path, config.Account, config.Container, name) + return nil + } + // Create an authenticated client against the Azure cloud rawClient, err := storage.NewBasicClient(config.Account, config.Token) if err != nil { |