Skip to content

Commit

Permalink
Fix trace command
Browse files Browse the repository at this point in the history
This fixes the `trace` command which was failing due to a mis-matched
summariser.
  • Loading branch information
DavePearce committed Oct 15, 2024
1 parent b687f2e commit f5167bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/trace.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var traceCmd = &cobra.Command{
func init() {
rootCmd.AddCommand(traceCmd)
traceCmd.Flags().BoolP("list", "l", false, "list only the columns in the trace file")
traceCmd.Flags().StringArrayP("include", "i", []string{"rows", "bitwidth", "bytes", "elements"},
traceCmd.Flags().StringArrayP("include", "i", []string{"lines", "bitwidth", "bytes", "elements"},
fmt.Sprintf("specify information to include in column listing: %s", summariserOptions()))
traceCmd.Flags().Bool("stats", false, "print summary information about the trace file")
traceCmd.Flags().BoolP("print", "p", false, "print entire trace file")
Expand Down

0 comments on commit f5167bc

Please sign in to comment.