Skip to content

Commit 0ae33e1

Browse files
committed
Update URLs
1 parent 8af28bb commit 0ae33e1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package/install.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,25 +81,25 @@ function done(err) {
8181

8282
if (process.platform === 'linux') {
8383
if (process.arch === 'x64') {
84-
clientUrl = 'https://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html';
84+
clientUrl = 'https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html';
8585
} else {
86-
clientUrl = 'https://www.oracle.com/technetwork/topics/linuxsoft-082809.html';
86+
clientUrl = 'https://www.oracle.com/database/technologies/instant-client/linux-x86-32-downloads.html';
8787
}
8888

8989
log('** - Oracle Client libraries (' + arch + ') must be configured with ldconfig or LD_LIBRARY_PATH');
9090
log('** - To get libraries, install an Instant Client Basic or Basic Light package from');
9191
log('** ' + clientUrl);
9292
} else if (process.platform === 'darwin') {
93-
clientUrl = 'https://www.oracle.com/technetwork/topics/intel-macsoft-096467.html';
93+
clientUrl = 'https://www.oracle.com/database/technologies/instant-client/macos-intel-x86-downloads.html';
9494
installUrl = 'https://oracle.github.io/node-oracledb/INSTALL.html#instosx';
9595

9696
log('** - Oracle Instant Client Basic or Basic Light package libraries must be in ~/lib or /usr/local/lib');
9797
log('** Download from ' + clientUrl);
9898
} else if (process.platform === 'win32') {
9999
if (process.arch === 'x64') {
100-
clientUrl = 'https://www.oracle.com/technetwork/topics/winx64soft-089540.html';
100+
clientUrl = 'https://www.oracle.com/database/technologies/instant-client/winx64-64-downloads.html';
101101
} else {
102-
clientUrl = 'https://www.oracle.com/technetwork/topics/winsoft-085727.html';
102+
clientUrl = 'https://www.oracle.com/database/technologies/instant-client/microsoft-windows-32-downloads.html';
103103
}
104104

105105
log('** - Oracle Client libraries (' + arch + ') must be in your PATH environment variable');

0 commit comments

Comments
 (0)