Browse Source

Merge pull request #2178 from danielflira/master

fix weed fuse parameters parsing
pull/2182/head
Chris Lu 4 years ago
committed by GitHub
parent
commit
53ecae7c7b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      weed/command/fuse.go

2
weed/command/fuse.go

@ -55,7 +55,7 @@ func runFuse(cmd *Command, args []string) bool {
name := option.String()
option.Reset()
for i++; i < rawArgsLen && rawArgs[i] != ','; i++ {
for i++; i < rawArgsLen && rawArgs[i] != ',' && rawArgs[i] != ' '; i++ {
// double quote separator read option until next double quote
if rawArgs[i] == '"' {
for i++; i < rawArgsLen && rawArgs[i] != '"'; i++ {

Loading…
Cancel
Save