Skip to content

Commit

Permalink
Merge pull request #42927 from xstefank/dot-in-native
Browse files Browse the repository at this point in the history
Add missing dot to GraalVM not found message
  • Loading branch information
gsmet authored Aug 31, 2024
2 parents 68fea6b + d973e4d commit 7b0575a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ public NativeImageRunnerBuildItem resolveNativeImageBuildRunner(NativeConfig nat
}
String executableName = getNativeImageExecutableName();
String errorMessage = "Cannot find the `" + executableName
+ "` in the GRAALVM_HOME, JAVA_HOME and System PATH. Install it using `gu install native-image`";
+ "` in the GRAALVM_HOME, JAVA_HOME and System PATH. Install it using `gu install native-image`.";
if (!SystemUtils.IS_OS_LINUX) {
// Delay the error: if we're just building native sources, we may not need the build runner at all.
return new NativeImageRunnerBuildItem(new NativeImageBuildRunnerError(errorMessage));
Expand Down

0 comments on commit 7b0575a

Please sign in to comment.