-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Print Build finished instead of sucessful in nop
`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 <vdemeest@redhat.com>
- Loading branch information
1 parent
395bc32
commit 5c04904
Showing
2 changed files
with
67 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,5 @@ package main | |
import "fmt" | ||
|
||
func main() { | ||
fmt.Println("Build successful") | ||
fmt.Println("Build finished") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters