fix: explicitly accept non-commands as root args (#1458)

This commit is contained in:
nils måsén 2022-11-05 19:06:52 +01:00 committed by GitHub
parent 5134e159e2
commit ae8c36f04f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,6 +54,7 @@ func NewRootCommand() *cobra.Command {
`, `,
Run: Run, Run: Run,
PreRun: PreRun, PreRun: PreRun,
Args: cobra.ArbitraryArgs,
} }
} }