File tree 1 file changed +12
-4
lines changed
1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -1058,20 +1058,28 @@ Executed at: {executed_at}"#,
1058
1058
CommandOutput :: did_not_start ( stdout, stderr)
1059
1059
}
1060
1060
} ;
1061
+
1062
+ let fail = |message : & str | {
1063
+ if self . is_verbose ( ) {
1064
+ println ! ( "{message}" ) ;
1065
+ } else {
1066
+ println ! ( "Command has failed. Rerun with -v to see more details." ) ;
1067
+ }
1068
+ exit ! ( 1 ) ;
1069
+ } ;
1070
+
1061
1071
if !output. is_success ( ) {
1062
1072
match command. failure_behavior {
1063
1073
BehaviorOnFailure :: DelayFail => {
1064
1074
if self . fail_fast {
1065
- println ! ( "{message}" ) ;
1066
- exit ! ( 1 ) ;
1075
+ fail ( & message) ;
1067
1076
}
1068
1077
1069
1078
let mut failures = self . delayed_failures . borrow_mut ( ) ;
1070
1079
failures. push ( message) ;
1071
1080
}
1072
1081
BehaviorOnFailure :: Exit => {
1073
- println ! ( "{message}" ) ;
1074
- exit ! ( 1 ) ;
1082
+ fail ( & message) ;
1075
1083
}
1076
1084
BehaviorOnFailure :: Ignore => {
1077
1085
// If failures are allowed, either the error has been printed already
You can’t perform that action at this time.
0 commit comments