Skip to content

Commit

Permalink
Merge pull request #751 from JuliaLang/handle-error-state
Browse files Browse the repository at this point in the history
Handle an error condition correctly
  • Loading branch information
davidanthoff authored Nov 15, 2023
2 parents 77f80eb + 235a434 commit d6d7569
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bin/julialauncher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ fn main() -> Result<std::process::ExitCode> {
eprintln!("{}", e.msg);

return Ok(std::process::ExitCode::FAILURE);
} else {
return Err(client_status.unwrap_err());
}
}
}
Expand Down

0 comments on commit d6d7569

Please sign in to comment.