diff options
| author | chrislu <chris.lu@gmail.com> | 2022-09-30 08:44:41 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-09-30 08:44:41 -0700 |
| commit | ba0db28dbb1cf73a9148de827c89f1cff81a3272 (patch) | |
| tree | dfb110f41cd03dcadf0c8cced9acc2246394b60c /weed/command | |
| parent | 8e81619d0260f8023564a9897a76127e28851e00 (diff) | |
| download | seaweedfs-ba0db28dbb1cf73a9148de827c89f1cff81a3272.tar.xz seaweedfs-ba0db28dbb1cf73a9148de827c89f1cff81a3272.zip | |
mount: fix extra option format
Diffstat (limited to 'weed/command')
| -rw-r--r-- | weed/command/fuse.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/fuse.go b/weed/command/fuse.go index c686f9b42..1d58ffdd7 100644 --- a/weed/command/fuse.go +++ b/weed/command/fuse.go @@ -191,7 +191,7 @@ func runFuse(cmd *Command, args []string) bool { case "fusermount.path": fusermountPath = parameter.value default: - mountOptions.extraOptions = append(mountOptions.extraOptions, fmt.Sprintf("%s:%s", parameter.name, parameter.value)) + mountOptions.extraOptions = append(mountOptions.extraOptions, fmt.Sprintf("%s=%s", parameter.name, parameter.value)) } } |
