diff options
| -rw-r--r-- | main.go | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -15,18 +15,13 @@ var BUILDTIME string var ARGNAME string = "go-clone" -// var pp *arg.Parser var forge *forgepb.Forge -var auto *prep.Auto // more experiments for bash handling +var auto *prep.Auto var workingRepo *gitpb.Repo func main() { - // log.Info("go-clone version", VERSION, "built on", BUILDTIME) - // prep.Bash(ARGNAME, argv.DoAutoComplete) // todo: make this: prep.Bash(argv) - // pp = arg.MustParse(&argv) - // prep.Gui() // prepares the GUI package for go-args - auto = prep.Bash3(&argv) // this line should be: prep.Bash(&argv) + auto = prep.Bash3(&argv) // does shell autocomplete with go-args forge = forgepb.Init() |
