diff options
| author | Jeff Carr <[email protected]> | 2025-10-03 14:19:18 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-03 14:19:18 -0500 |
| commit | f19039b4ae20fbf01248da9fbdf97ef93c7080d0 (patch) | |
| tree | fcd1f9178451d0a4b0838ee5390d5f2ffb486428 /argv.go | |
| parent | e4b679003ce0847dd65254a5e0a0b3239fd0d566 (diff) | |
try to fix .deb builds
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,6 @@ type args struct { Zoo *EmptyCmd `arg:"subcommand:zoo" help:"WIT Private Cloud info"` Upgrade *UpgradeCmd `arg:"subcommand:upgrade" help:"apt upgrade packages installed from mirrors.wit.com"` RepoMap string `arg:"--repomap" help:"location of the repomap"` - Release bool `arg:"--release" help:"use go-deb --release"` DryRun bool `arg:"--dry-run" help:"only show what would be packaged"` Install bool `arg:"--install" help:"go install the binaries first"` Verbose bool `arg:"--verbose" help:"be loud about it"` @@ -46,6 +45,7 @@ type BuildCmd 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:"rebuild everything"` |
