[actions] fix missing return

This commit is contained in:
2023-10-31 13:12:50 +01:00
parent df2b9e7624
commit 2d6ca2b0bd

View File

@@ -45,7 +45,7 @@ func (a StagedActions) executeInternal(f func(Action)) {
err := <-a.ActionChan
if err != nil {
fmt.Printf("Error occured on Stage %d: %s", idx+1, err)
fmt.Printf("Error occured on Stage %d: %s\n", idx+1, err)
}
}
}