Skip to content

Commit

Permalink
Whoops...its a pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
dehort committed Dec 6, 2024
1 parent d3c1956 commit 0e71e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/common/ansible/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func GetStdout(events []messageModel.PlaybookRunResponseMessageYamlEventsElem, h
continue
}

if event.Stdout != nil && len(event.Stdout) > 0 {
if event.Stdout != nil && len(*event.Stdout) > 0 {
result += *event.Stdout + "\n"
}
}
Expand Down

0 comments on commit 0e71e29

Please sign in to comment.