diff options
| author | Jeff Carr <[email protected]> | 2025-09-18 16:53:36 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-18 16:53:36 -0500 |
| commit | 3c922f1277bae181aea7648311aa0a13b4cd7b5b (patch) | |
| tree | ec9212b45c472f618e47471bb21dae68d363519d | |
| parent | ac16ef71277fafb4975d9e31be0dae2fffac1764 (diff) | |
wow. really? this works?v0.25.8
| -rw-r--r-- | main.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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? |
