diff --git a/cmd/run.go b/cmd/run.go index feaa369..3a3fcef 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -17,6 +17,7 @@ var runCmd = &cobra.Command{ func init() { rootCmd.AddCommand(runCmd) + runCmd.Flags().SetInterspersed(false) } func runRun(cmd *cobra.Command, args []string) { diff --git a/cmd/test.go b/cmd/test.go index b71efef..756b8fa 100644 --- a/cmd/test.go +++ b/cmd/test.go @@ -17,6 +17,7 @@ var testCmd = &cobra.Command{ func init() { rootCmd.AddCommand(testCmd) + testCmd.Flags().SetInterspersed(false) } func runTest(cmd *cobra.Command, args []string) {