Skip to content

Commit

Permalink
Fix bug on linux platform
Browse files Browse the repository at this point in the history
  • Loading branch information
gjsjohnmurray committed Nov 18, 2024
1 parent b667696 commit 71ac49e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intersystems-iris-native/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (process.platform == "win32" && process.arch == "x64") {
}
} else if (process.platform == "linux") {
let distro = getLinuxDistro()
logChannel.debug('platform = ' + process.platform + ': ' + distro + ': ' + process.arch);
console.log('intersystems-iris-native:index.js(linux): platform = ' + process.platform + ': ' + distro + ': ' + process.arch);
if (distro == 'ubuntu') {
if (process.arch == "x64") {
native = require('./bin/lnxubuntux64/irisnative.node');
Expand Down

0 comments on commit 71ac49e

Please sign in to comment.