summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-15 07:53:16 -0500
committerJeff Carr <[email protected]>2025-10-15 07:53:16 -0500
commit2ac31afb31dfc53c9973adda624c62e741424975 (patch)
treeafe5dfba5990a1f54f6e488ddc19321ef5883b21 /argv.go
parente27a0fa3699c8cb61819a70bce5161620dd84ad4 (diff)
pass the build version to dpkg
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/argv.go b/argv.go
index fbd4b53..3f92e1d 100644
--- a/argv.go
+++ b/argv.go
@@ -56,13 +56,14 @@ type LinuxCmd struct {
}
type DebianCmd struct {
- Release bool `arg:"--release" help:"use go-deb --release"`
- DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
- Verbose bool `arg:"--verbose" help:"be loud about it"`
- Force bool `arg:"--force" help:"force devel .deb builds into /incoming"`
- Priv bool `arg:"--private" help:"build private repos"`
- All bool `arg:"--all" help:"build everything again"`
- Arch string `arg:"--arch" help:"what arch"`
+ Release bool `arg:"--release" help:"use go-deb --release"`
+ DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
+ Verbose bool `arg:"--verbose" help:"be loud about it"`
+ Force bool `arg:"--force" help:"force devel .deb builds into /incoming"`
+ Priv bool `arg:"--private" help:"build private repos"`
+ All bool `arg:"--all" help:"build everything again"`
+ BuildVersion int `arg:"--buildversion" help:"the build version"`
+ Arch string `arg:"--arch" help:"what arch"`
}
type CloneCmd struct {