Be more resilient with startup lines (#1642)

This commit is contained in:
Jonathan Turner 2020-04-23 17:22:01 +12:00 committed by GitHub
parent 9ec2aca86f
commit 701711eada
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -445,7 +445,7 @@ pub async fn run_pipeline_standalone(
};
context.maybe_print_errors(Text::from(line));
if error_code != 0 {
if error_code != 0 && exit_on_error {
std::process::exit(error_code);
}
}