mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-18 21:25:08 +08:00
mount: fix extra option format
This commit is contained in:
@@ -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))
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user