Browse Source

report unknown commands

pull/942/head
Chris Lu 6 years ago
parent
commit
067b935763
  1. 5
      weed/shell/shell_liner.go

5
weed/shell/shell_liner.go

@ -70,13 +70,18 @@ func RunShell(options ShellOptions) {
} else if cmd == "exit" || cmd == "quit" {
return
} else {
foundCommand := false
for _, c := range commands {
if c.Name() == cmd {
if err := c.Do(args, commandEnv, os.Stdout); err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
}
foundCommand = true
}
}
if !foundCommand {
fmt.Fprintf(os.Stderr, "unknown command: %v\n", cmd)
}
}
}

Loading…
Cancel
Save