Skip to content

Commit

Permalink
run: remove leading and trailing newline in baur run --help output
Browse files Browse the repository at this point in the history
  • Loading branch information
fho committed May 30, 2024
1 parent 940cfb1 commit e06ffd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/command/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func newRunCmd() *runCmd {
Command: cobra.Command{
Use: "run [TARGET|APP_DIR]...",
Short: "run tasks",
Long: runLongHelp,
Long: strings.TrimSpace(runLongHelp),
Example: strings.TrimSpace(runExample),
ValidArgsFunction: newCompleteTargetFunc(completeTargetFuncOpts{}),
},
Expand Down

0 comments on commit e06ffd3

Please sign in to comment.