mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
parent
5db25a8f2a
commit
b9d8a837af
|
@ -47,7 +47,10 @@ func runFuse(cmd *Command, args []string) bool {
|
||||||
for i++; i < rawArgsLen && rawArgs[i] != ' '; i++ {
|
for i++; i < rawArgsLen && rawArgs[i] != ' '; i++ {
|
||||||
option.WriteByte(rawArgs[i])
|
option.WriteByte(rawArgs[i])
|
||||||
}
|
}
|
||||||
options = append(options, parameter{option.String(), "true"})
|
// ignore "-o"
|
||||||
|
if option.String() != "o" {
|
||||||
|
options = append(options, parameter{option.String(), "true"})
|
||||||
|
}
|
||||||
option.Reset()
|
option.Reset()
|
||||||
|
|
||||||
// equal separator start option with pending value
|
// equal separator start option with pending value
|
||||||
|
|
Loading…
Reference in a new issue