diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-06-11 06:46:44 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-06-11 06:46:44 +0000 |
commit | c1491f04e95aa9f71f8d8ab9fd95b9de00a26e97 (patch) | |
tree | f0239119b425ae9ed8a22be19776f2fd141459d9 /runsc/main.go | |
parent | 857005f70793d553203f303c834368694adc8b8f (diff) | |
parent | 74e397e39accbeb9fcb5382ce963df55014ae7ce (diff) |
Merge 74e397e3 (automated)
Diffstat (limited to 'runsc/main.go')
-rw-r--r-- | runsc/main.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runsc/main.go b/runsc/main.go index 6f8e6e378..a214f6ba0 100644 --- a/runsc/main.go +++ b/runsc/main.go @@ -76,7 +76,9 @@ var ( func main() { // Help and flags commands are generated automatically. - subcommands.Register(subcommands.HelpCommand(), "") + help := cmd.NewHelp(subcommands.DefaultCommander) + help.Register(new(cmd.Syscalls)) + subcommands.Register(help, "") subcommands.Register(subcommands.FlagsCommand(), "") // Register user-facing runsc commands. |