diff --git a/main.go b/main.go index 244d12b..a1a887e 100644 --- a/main.go +++ b/main.go @@ -43,9 +43,10 @@ func getVersion(repo *gitpb.Repo, name string) string { func main() { me = new(mainType) - // prep.Bash2(ARGNAME, argv.DoAutoComplete) // this line should be: prep.Bash(&argv) - me.myGui = prep.Gui() // prepares the GUI package for go-args - me.auto = prep.Bash3(argv.DoAutoComplete, &argv) // this line should be: prep.Bash(&argv) + me.myGui = prep.Gui() // prepares the GUI package for go-args + me.auto = prep.Bash3(&argv) // this line should be: prep.Bash(&argv) + + // me.auto = prep.Bash3(argv.DoAutoComplete, &argv) // this line should be: prep.Bash(&argv) // arg.MustParse(&argv) // these three lines are becoming terrible syntax // me.auto = prep.MustParse(&argv) // try to make this work?