Skip to content

Commit

Permalink
fix error with --list-remote azure and --download azurew
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Urban committed Aug 11, 2024
1 parent 6759ced commit 335cf89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ func NewAzRepo(opts options) (*azRepo, error) {
return nil, fmt.Errorf("could not setup Azure credentials: %w", err)
}

url := fmt.Sprintf("https://%s.%s/%s", r.account, r.endpoint, r.container)
url := fmt.Sprintf("https://%s.%s", r.account, r.endpoint)

client, err = azblob.NewClientWithSharedKeyCredential(url, credential, nil)
if err != nil {
Expand Down

0 comments on commit 335cf89

Please sign in to comment.