Skip to content

Commit

Permalink
Print Build finished instead of sucessful in nop
Browse files Browse the repository at this point in the history
`nop` image/step used to be executed *only* when all the previous step
were done sucessfully. As we are not using init containers anymore,
this is not true, `nop` will always be executed even in case of
previous failure (after the others though).

Saying build successful is misleading, let's changed that to `finished`.

Signed-off-by: Vincent Demeester <[email protected]>
  • Loading branch information
vdemeester committed Apr 10, 2019
1 parent 395bc32 commit 12a477e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/nop/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ package main
import "fmt"

func main() {
fmt.Println("Build successful")
fmt.Println("Build finished")
}

0 comments on commit 12a477e

Please sign in to comment.