From 322ec42ce6da80915a80ed36f02bc6a15c238fb2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 3 Oct 2025 05:50:14 -0500 Subject: try to make apt install --force to work --- argv.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'argv.go') diff --git a/argv.go b/argv.go index 78d3b5d..a8a656f 100644 --- a/argv.go +++ b/argv.go @@ -42,10 +42,9 @@ type args struct { } type DebianCmd struct { - 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"` - SkipInstall bool `arg:"--skip-install" help:"rebuild everything"` + 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"` } type UpgradeCmd struct { @@ -106,7 +105,7 @@ func (args) Appname() string { func (a args) DoAutoComplete(pb *prep.Auto) { if pb.Cmd == "" { - pb.Autocomplete3([]string{"--version", "push", "build", "debian", "upgrade", "macos", "git", "rdate"}) + pb.Autocomplete3([]string{"--version", "push", "build", "debian", "upgrade", "macos", "git", "rdate", "--force"}) } else { pb.SubCommand(pb.Goargs...) } -- cgit v1.2.3