git-bug/misc/gen_zsh_completion.go

24 lines
364 B
Go
Raw Normal View History

// +build ignore
2018-07-20 17:08:55 +03:00
package main
import (
"fmt"
"github.com/MichaelMure/git-bug/commands"
"log"
"os"
"path"
)
func main() {
cwd, _ := os.Getwd()
2018-08-06 04:22:36 +03:00
filepath := path.Join(cwd, "misc", "zsh_completion", "git-bug")
2018-07-20 17:08:55 +03:00
fmt.Println("Generating zsh completion file ...")
err := commands.RootCmd.GenZshCompletionFile(filepath)
if err != nil {
log.Fatal(err)
}
}