Skip to content

Commit

Permalink
chore: unnecessary use of fmt.Sprintf
Browse files Browse the repository at this point in the history
Signed-off-by: guoguangwu <[email protected]>
  • Loading branch information
testwill committed Sep 5, 2023
1 parent ddbd6fd commit 5bd5033
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 @@ -43,7 +43,7 @@ func (rclone *rcloneMounter) Mount(source string, target string) error {
args := []string{
"mount",
fmt.Sprintf(":s3:%s", path.Join(rclone.meta.BucketName, rclone.meta.Prefix, rclone.meta.FSPath)),
fmt.Sprintf("%s", target),
target,
"--daemon",
"--s3-provider=AWS",
"--s3-env-auth=true",
Expand Down

0 comments on commit 5bd5033

Please sign in to comment.