From 3c922f1277bae181aea7648311aa0a13b4cd7b5b Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 18 Sep 2025 16:53:36 -0500 Subject: [PATCH] wow. really? this works? --- main.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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?