blob: 8793556a5f46532be6b573861e6490a67c683c70 (
plain) (
tree)
|
|
// +build ignore
package main
import (
"fmt"
"github.com/MichaelMure/git-bug/commands"
"log"
"os"
"path"
)
func main() {
cwd, _ := os.Getwd()
filepath := path.Join(cwd, "misc", "bash_completion", "git-bug")
fmt.Println("Generating bash completion file ...")
err := commands.RootCmd.GenBashCompletionFile(filepath)
if err != nil {
log.Fatal(err)
}
}
|