summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-03 14:19:18 -0500
committerJeff Carr <[email protected]>2025-10-03 14:19:18 -0500
commitf19039b4ae20fbf01248da9fbdf97ef93c7080d0 (patch)
treefcd1f9178451d0a4b0838ee5390d5f2ffb486428 /argv.go
parente4b679003ce0847dd65254a5e0a0b3239fd0d566 (diff)
try to fix .deb builds
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 7ffd70a..3ba9546 100644
--- a/argv.go
+++ b/argv.go
@@ -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"`