Skip to content

Commit

Permalink
Merge pull request #72 from testwill/string
Browse files Browse the repository at this point in the history
chore: there's no need to use fmt.Sprintf
  • Loading branch information
vitalif authored Feb 12, 2024
2 parents 5786485 + 24f4b61 commit 995a1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/mounter/rclone.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (rclone *rcloneMounter) Mount(target, volumeID string) error {
args := []string{
"mount",
fmt.Sprintf(":s3:%s", path.Join(rclone.meta.BucketName, rclone.meta.Prefix)),
fmt.Sprintf("%s", target),
target,
"--daemon",
"--s3-provider=AWS",
"--s3-env-auth=true",
Expand Down

0 comments on commit 995a1de

Please sign in to comment.