Skip to content

Commit

Permalink
fix error printing
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrumbiegel committed Mar 14, 2024
1 parent 5776be8 commit c51ffc6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/execute/julia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,9 +541,7 @@ async function writeJuliaCommand(
`Julia server returned error after receiving "${command}" command:\n` +
err,
);
if (!juliaError !== undefined) {
error(juliaError);
}
error(juliaError);
throw new Error("Internal julia server error");
}

Expand Down

0 comments on commit c51ffc6

Please sign in to comment.