Skip to content

Commit db1c776

Browse files
committed
web-server: rephrase '--force' option help text
Remove "Whether to" from description of the '--force' option for 'git-bundle-server web-server start'. To a user, the '--force' option is not a boolean, so the description should describe what '--force' does when specified. Signed-off-by: Victoria Dye <[email protected]>
1 parent d70a1b1 commit db1c776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/git-bundle-server/web-server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func (w *webServer) startServer(args []string) error {
8181
parser := argparse.NewArgParser("git-bundle-server web-server start [-f|--force]")
8282

8383
// Args for 'git-bundle-server web-server start'
84-
force := parser.Bool("force", false, "Whether to force reconfiguration of the web server daemon")
84+
force := parser.Bool("force", false, "Force reconfiguration of the web server daemon")
8585
parser.BoolVar(force, "f", false, "Alias of --force")
8686

8787
// Arguments passed through to 'git-bundle-web-server'

0 commit comments

Comments
 (0)