diff options
| author | Jeff Carr <[email protected]> | 2025-10-15 07:53:16 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-15 07:53:16 -0500 |
| commit | 2ac31afb31dfc53c9973adda624c62e741424975 (patch) | |
| tree | afe5dfba5990a1f54f6e488ddc19321ef5883b21 /argv.go | |
| parent | e27a0fa3699c8cb61819a70bce5161620dd84ad4 (diff) | |
pass the build version to dpkg
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -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 { |
