summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-26 10:06:03 -0500
committerJeff Carr <[email protected]>2025-10-26 10:06:03 -0500
commit16fdee4c38c13bb71f1c77c15e3f9b8853bf694d (patch)
tree9474fa59cefaacdfa8df17e19da914c9fa71884f /argv.go
parentf324a650ce0dd8298be4a81acadd107a62d059b2 (diff)
new argv (much better than before)v0.22.170
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/argv.go b/argv.go
new file mode 100644
index 0000000..d47a5e7
--- /dev/null
+++ b/argv.go
@@ -0,0 +1,21 @@
+package main
+
+var argv args
+
+type args struct {
+ Show *EmptyCmd `arg:"subcommand:show" help:"show what would be done"`
+ Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
+ Dump *EmptyCmd `arg:"subcommand:dump" help:"dump out the future control file"`
+ Ldflags []string `arg:"--ldflags" help:"flags to pass to go build"`
+ OutDir string `arg:"--dir" help:"write .deb file into this directory"`
+ Namespace string `arg:"--namespace" help:"the namespace of the repo"`
+ Arch string `arg:"--arch" help:"what arch"`
+ BuildVersion int `arg:"--buildversion" help:"what arch"`
+ KeepFiles bool `arg:"--keep-files" help:"keep the build files/"`
+ Release bool `arg:"--release" help:"build version from the @latest git tag"`
+ Force bool `arg:"--force" default:"false" help:"force overwrite an existing .deb file"`
+ Verbose bool `arg:"--verbose" help:"show more things"`
+}
+
+type EmptyCmd struct {
+}