From 9e63c84f0eb7981f64a3a65997e4ec6f098d6e1a Mon Sep 17 00:00:00 2001
From: Florian Angerer <florian.angerer@oracle.com>
Date: Mon, 16 Apr 2018 13:35:09 +0200
Subject: [PATCH] Include FastR Github repo URL in error message.

---
 .../src/com/oracle/truffle/r/runtime/RInternalError.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RInternalError.java b/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RInternalError.java
index fc61fb2ff9..bf6f09ba02 100644
--- a/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RInternalError.java
+++ b/com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RInternalError.java
@@ -192,7 +192,7 @@ public final class RInternalError extends Error implements TruffleException {
                     System.err.println(verboseStackTrace);
                 }
 
-                String message = "An internal error occurred: \"" + errMsg + "\"\nPlease report an issue including the commands";
+                String message = "An internal error occurred: \"" + errMsg + "\"\nPlease report an issue at https://github.com/oracle/fastr including the commands";
                 if (FastROptions.PrintErrorStacktracesToFile.getBooleanValue()) {
                     message += " and the error log file '" + getLogFileName(contextId) + "'.";
                 } else {
-- 
GitLab