Skip to content

Commit

Permalink
feat(pkg/run): print task before host in the run output
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Apr 9, 2023
1 parent 3dc5453 commit 6fb47d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ func Run(

if !quietOutput {
fmt.Printf("+ play: %s (%d/%d)\n", play.Name, playI, lenPlays)
fmt.Printf(" task: %s (%d/%d)\n", t.Name, taskI, lenTasks)
fmt.Printf(" host: %s (%d/%d)\n", host.SSHTarget, hostI, lenHosts)
fmt.Printf(" sudo: %t\n", play.Sudo)
fmt.Printf(" task: %s (%d/%d)\n", t.Name, taskI, lenTasks)
}
taskInput := libtask.TaskInput{
SSHTarget: host.SSHTarget,
Expand Down

0 comments on commit 6fb47d5

Please # to comment.