mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
25 lines
365 B
Go
25 lines
365 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"path"
|
|
|
|
"github.com/MichaelMure/git-bug/commands"
|
|
)
|
|
|
|
func main() {
|
|
cwd, _ := os.Getwd()
|
|
filepath := path.Join(cwd, "misc", "zsh_completion", "git-bug")
|
|
|
|
fmt.Println("Generating ZSH completion file ...")
|
|
|
|
err := commands.RootCmd.GenZshCompletionFile(filepath)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|