mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
mount: fix extra option format
This commit is contained in:
parent
8e81619d02
commit
ba0db28dbb
|
@ -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))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue