diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-06 03:22:36 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-06 03:26:42 +0200 |
commit | 26e7ce44db91f3b08fa5d1b32690348d40c1fb00 (patch) | |
tree | d42e357dfd83453d284f861dccdadfde54eef54e /doc/gen_zsh_completion.go | |
parent | b2f20c9a61715b0a60f9e55688dbed221d775c7e (diff) | |
download | git-bug-26e7ce44db91f3b08fa5d1b32690348d40c1fb00.tar.gz |
upgrade the readme
Diffstat (limited to 'doc/gen_zsh_completion.go')
-rw-r--r-- | doc/gen_zsh_completion.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/doc/gen_zsh_completion.go b/doc/gen_zsh_completion.go deleted file mode 100644 index 74c900fb..00000000 --- a/doc/gen_zsh_completion.go +++ /dev/null @@ -1,23 +0,0 @@ -// +build ignore - -package main - -import ( - "fmt" - "github.com/MichaelMure/git-bug/commands" - "log" - "os" - "path" -) - -func main() { - cwd, _ := os.Getwd() - filepath := path.Join(cwd, "doc", "zsh_completion", "git-bug") - - fmt.Println("Generating zsh completion file ...") - - err := commands.RootCmd.GenZshCompletionFile(filepath) - if err != nil { - log.Fatal(err) - } -} |