Skip to content

Commit

Permalink
chore(CLI): fail by default on run command failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Apr 23, 2020
1 parent 55a0604 commit 3e1e681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ func runSteps(steps []config.StepConfig, namespace, baseDir string) error {
}
defer os.Remove(file.Name())

_, err = file.WriteString("#!/bin/bash\n\n")
_, err = file.WriteString("#!/bin/bash\n\nset -e\n\n")
if err != nil {
return err
}
Expand Down

0 comments on commit 3e1e681

Please sign in to comment.