diff --git a/lib/wrapper/noderfc-bindings.js b/lib/wrapper/noderfc-bindings.js index 3261ab7..f75a199 100644 --- a/lib/wrapper/noderfc-bindings.js +++ b/lib/wrapper/noderfc-bindings.js @@ -40,7 +40,7 @@ catch (ex) { if (ex.message.indexOf("sapnwrfc.node") !== -1) ex.message += ["win32", "linux", "darwin"].indexOf(process.platform) !== -1 - ? "\n\n The SAP NW RFC SDK could not be loaded, check the installation: http://sap.github.io/node-rfc/install.html#sap-nw-rfc-sdk-installation" + ? "\n\n The SAP NW RFC SDK could not be loaded, check the installation: https://github.com/SAP/node-rfc/blob/master/doc/installation.md#sap-nwrfc-sdk-installation" : `\n\nPlatform not supported: ${process.platform}`; ex.message += `\nenvironment: ${JSON.stringify(E, null, 2)}\n`; throw ex; @@ -49,4 +49,4 @@ const environment = Object.assign({}, E, { noderfc: noderfc_binding.bindingVersions, }); exports.environment = environment; -//# sourceMappingURL=noderfc-bindings.js.map \ No newline at end of file +//# sourceMappingURL=noderfc-bindings.js.map diff --git a/src/ts/wrapper/noderfc-bindings.ts b/src/ts/wrapper/noderfc-bindings.ts index e0c68bb..9860703 100644 --- a/src/ts/wrapper/noderfc-bindings.ts +++ b/src/ts/wrapper/noderfc-bindings.ts @@ -67,7 +67,7 @@ try { if (ex.message.indexOf("sapnwrfc.node") !== -1) ex.message += ["win32", "linux", "darwin"].indexOf(process.platform) !== -1 - ? "\n\n The SAP NW RFC SDK could not be loaded, check the installation: http://sap.github.io/node-rfc/install.html#sap-nw-rfc-sdk-installation" + ? "\n\n The SAP NW RFC SDK could not be loaded, check the installation: https://github.com/SAP/node-rfc/blob/master/doc/installation.md#sap-nwrfc-sdk-installation" : `\n\nPlatform not supported: ${process.platform}`; ex.message += `\nenvironment: ${JSON.stringify(E, null, 2)}\n`; throw ex;