From a1352e9079e50901d393d4bc4466ea42a3ff1d65 Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Fri, 14 Jun 2024 18:52:49 -0700 Subject: [PATCH] Make the `runsc help install` usage line actually correct. PiperOrigin-RevId: 643508463 --- runsc/cmd/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runsc/cmd/install.go b/runsc/cmd/install.go index caaedf3dc..5d0a3ab91 100644 --- a/runsc/cmd/install.go +++ b/runsc/cmd/install.go @@ -53,7 +53,7 @@ func (*Install) Synopsis() string { // Usage implements subcommands.Command.Usage. func (*Install) Usage() string { - return `install [flags] [-- [args...]] -- if provided, args are passed to the runtime + return `install [--runtime=] [flags] [-- [args...]] -- if provided, args are passed to the runtime ` }