aboutsummaryrefslogtreecommitdiffstats
path: root/misc/gen_bash_completion.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-06 03:22:36 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-06 03:26:42 +0200
commit26e7ce44db91f3b08fa5d1b32690348d40c1fb00 (patch)
treed42e357dfd83453d284f861dccdadfde54eef54e /misc/gen_bash_completion.go
parentb2f20c9a61715b0a60f9e55688dbed221d775c7e (diff)
downloadgit-bug-26e7ce44db91f3b08fa5d1b32690348d40c1fb00.tar.gz
upgrade the readme
Diffstat (limited to 'misc/gen_bash_completion.go')
-rw-r--r--misc/gen_bash_completion.go39
1 files changed, 39 insertions, 0 deletions
diff --git a/misc/gen_bash_completion.go b/misc/gen_bash_completion.go
new file mode 100644
index 00000000..3a75b0f5
--- /dev/null
+++ b/misc/gen_bash_completion.go
@@ -0,0 +1,39 @@
+// +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 ...")
+
+ //git := &cobra.Command{
+ // Use: "git",
+ // BashCompletionFunction: "qsdhjlkqsdhlsd",
+ //}
+ //
+ //bug := &cobra.Command{
+ // Use: "bug",
+ // BashCompletionFunction: "ZHZLDHKLZDHJKL",
+ //}
+ //git.AddCommand(bug)
+
+ //for _, sub := range commands.RootCmd.Commands() {
+ // bug.AddCommand(sub)
+ //}
+
+ //err := git.GenBashCompletionFile(filepath)
+ err := commands.RootCmd.GenBashCompletionFile(filepath)
+ if err != nil {
+ log.Fatal(err)
+ }
+}