Skip to content

Commit 1a3572b

Browse files
committed
Remove obsolete macOS error help text referencing ~/lib
1 parent 1ebaf11 commit 1a3572b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/util.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,9 @@ function getInstallHelp() {
100100
url = 'http://www.oracle.com/technetwork/database/database-technologies/instant-client/overview/index.html\n';
101101
arch = process.arch;
102102
}
103-
mesg += 'You must have the ' + arch + ' Oracle Instant Client Basic or Basic Light package in ~/lib or /usr/local/lib\n';
104-
mesg += 'They can be downloaded from ' + url;
103+
mesg += 'You must have the ' + arch + ' Oracle Instant Client Basic or Basic Light package libraries in\n';
104+
mesg += '/usr/local/lib or set by calling oracledb.initOracleClient({libDir: "/my/instant_client_directory"}).\n';
105+
mesg += 'Oracle Instant Client can be downloaded from ' + url;
105106
} else if (process.platform === 'win32') {
106107
if (process.arch === 'x64') {
107108
url = 'http://www.oracle.com/technetwork/topics/winx64soft-089540.html\n';

0 commit comments

Comments
 (0)