Skip to content

Commit

Permalink
Fix printing raw workflow execution details (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
feedmeapples authored May 20, 2022
1 parent cb232f8 commit 1abc6ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions cli/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ var (
FlagPrintFullyDetailAlias = []string{"pf"}
FlagPrintRawTime = "print-raw-time"
FlagPrintRawTimeAlias = []string{"prt"}
FlagPrintRaw = "print-raw"
FlagPrintRawAlias = []string{"praw"}
FlagPrintRaw = "raw"
FlagPrintDateTime = "print-datetime"
FlagPrintDateTimeAlias = []string{"pdt"}
FlagPrintMemo = "print-memo"
Expand Down
4 changes: 4 additions & 0 deletions cli/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ func newWorkflowCommands() []*cli.Command {
Name: FlagResetPointsOnly,
Usage: "Only show auto-reset points",
},
&cli.BoolFlag{
Name: FlagPrintRaw,
Usage: "Print properties as they are stored",
},
}...),
Action: func(c *cli.Context) error {
return DescribeWorkflow(c)
Expand Down

0 comments on commit 1abc6ba

Please sign in to comment.