Skip to content

Commit

Permalink
Adds in missing newline on printf
Browse files Browse the repository at this point in the history
  • Loading branch information
bomoko committed Jul 18, 2022
1 parent d1f94c8 commit af611e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/lagoon/tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func getConfig() (*rest.Config, error) {
// ExecuteTaskInEnvironment .
func ExecuteTaskInEnvironment(task Task) error {
if debug {
fmt.Printf("Executing task '%v':'%v'", task.Name, task.Command)
fmt.Printf("Executing task '%v':'%v'\n", task.Name, task.Command)
}
command := make([]string, 0, 5)
if task.Shell != "" {
Expand Down

0 comments on commit af611e6

Please sign in to comment.