We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70722f6 commit c0779a5Copy full SHA for c0779a5
src/processor/java/org/truffleruby/processor/BuildInformationProcessor.java
@@ -59,7 +59,7 @@ public synchronized void init(ProcessingEnvironment env) {
59
revision = runCommand("git rev-parse --short=8 HEAD");
60
compileDate = runCommand("git log -1 --date=short --pretty=format:%cd");
61
} catch (Throwable e) {
62
- env.getMessager().printMessage(Kind.ERROR, e.getClass() + " " + e.getMessage());
+ throw new Error(e);
63
}
64
65
0 commit comments