From 1a3572b237f2f0e5826c7b6c828f93298ebf06ef Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Wed, 9 Sep 2020 09:10:00 +1000 Subject: [PATCH] Remove obsolete macOS error help text referencing ~/lib --- lib/util.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/util.js b/lib/util.js index f4adb0b7..fdf494ac 100644 --- a/lib/util.js +++ b/lib/util.js @@ -100,8 +100,9 @@ function getInstallHelp() { url = 'http://www.oracle.com/technetwork/database/database-technologies/instant-client/overview/index.html\n'; arch = process.arch; } - mesg += 'You must have the ' + arch + ' Oracle Instant Client Basic or Basic Light package in ~/lib or /usr/local/lib\n'; - mesg += 'They can be downloaded from ' + url; + mesg += 'You must have the ' + arch + ' Oracle Instant Client Basic or Basic Light package libraries in\n'; + mesg += '/usr/local/lib or set by calling oracledb.initOracleClient({libDir: "/my/instant_client_directory"}).\n'; + mesg += 'Oracle Instant Client can be downloaded from ' + url; } else if (process.platform === 'win32') { if (process.arch === 'x64') { url = 'http://www.oracle.com/technetwork/topics/winx64soft-089540.html\n';