Skip to content

Commit 27c7c14

Browse files
committed
[GR-14565] Add JVM in the VM string like in AbstractLanguageLauncher#printVersion()
1 parent fab94ff commit 27c7c14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/java/org/truffleruby/shared/TruffleRuby.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static String getVersionString(String implementationName, boolean isAOT)
3030
if (isAOT) {
3131
vm = implementationName + " Native";
3232
} else {
33-
vm = implementationName;
33+
vm = implementationName + " JVM";
3434
}
3535

3636
return String.format(

0 commit comments

Comments
 (0)