Browse Source

minor changes

pull/2237/head
Chris Lu 3 years ago
parent
commit
fe60c6ef9a
  1. 6
      weed/command/autocomplete.go
  2. 4
      weed/command/command.go

6
weed/command/autocomplete.go

@ -41,7 +41,7 @@ func AutocompleteMain(commands []*Command) bool {
func installAutoCompletion() bool {
if runtime.GOOS == "windows" {
fmt.Printf("windows is not supported")
fmt.Println("windows is not supported")
return false
}
@ -56,7 +56,7 @@ func installAutoCompletion() bool {
func uninstallAutoCompletion() bool {
if runtime.GOOS == "windows" {
fmt.Printf("windows is not supported")
fmt.Println("windows is not supported")
return false
}
@ -91,7 +91,7 @@ func runAutocomplete(cmd *Command, args []string) bool {
var cmdUnautocomplete = &Command{
Run: runUnautocomplete,
UsageLine: "unautocomplete",
UsageLine: "autocomplete.uninstall",
Short: "uninstall autocomplete",
Long: `weed autocomplete is uninstalled in the shell.

4
weed/command/command.go

@ -8,6 +8,8 @@ import (
)
var Commands = []*Command{
cmdAutocomplete,
cmdUnautocomplete,
cmdBackup,
cmdBenchmark,
cmdCompact,
@ -36,8 +38,6 @@ var Commands = []*Command{
cmdVersion,
cmdVolume,
cmdWebDav,
cmdAutocomplete,
cmdUnautocomplete,
}
type Command struct {

Loading…
Cancel
Save