Skip to content

Commit

Permalink
Fix missing throw
Browse files Browse the repository at this point in the history
  • Loading branch information
gilles-duboscq committed Apr 26, 2018
1 parent 3f00bae commit 1b12e33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ private Path getGraalVMBinaryPath(String binaryName) {
}
Path graalVMHome = getGraalVMHome(executablePath);
if (graalVMHome == null) {
abort("Can not exec to GraalVM binary: could not find GraalVM home");
throw abort("Can not exec to GraalVM binary: could not find GraalVM home");
}
Path jdkBin = graalVMHome.resolve("bin").resolve(executableName);
if (Files.exists(jdkBin)) {
Expand Down

0 comments on commit 1b12e33

Please sign in to comment.