Skip to content

Commit

Permalink
vendors/dell: add missing / separator in repository url (#120)
Browse files Browse the repository at this point in the history
A better fix needs to be implemented such that all downloaders use a
common method to generate the s3:// URL
  • Loading branch information
joelrebel authored Aug 28, 2023
1 parent e2e4578 commit 85e3f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/vendors/dell/dell.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (d *DUP) Stats() *vendors.Metrics {
func (d *DUP) Sync(ctx context.Context) error {
for _, fw := range d.firmwares {
dstPath := vendors.DstPath(fw)
dstURL := "s3://" + d.dstCfg.Bucket + dstPath
dstURL := "s3://" + d.dstCfg.Bucket + "/" + dstPath

d.logger.WithFields(
logrus.Fields{
Expand Down

0 comments on commit 85e3f84

Please sign in to comment.