Skip to content

Commit

Permalink
testing macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Mar 6, 2025
1 parent bf6bd10 commit fb64dfe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ if (process.platform === 'win32') {

else {
if(process.platform === 'darwin'){
const edjeNative = path.resolve(__dirname, '../lib/native/' + process.platform + '/' + process.arch + '/' + determineVersion() + '/' + 'edge_coreclr.node');
const nodeVersion = process.versions.node.split(".")[0]
const edjeNative = path.resolve(__dirname, '../lib/native/' + process.platform + '/' + process.arch + '/' + nodeVersion + '/' + 'edge_coreclr.node');
console.log(edjeNative)
if(fs.existsSync(edjeNative)){
spawn(dotnetPath, ['build', '--configuration', 'Release'], { stdio: 'inherit', cwd: path.resolve(__dirname, '..', 'lib', 'bootstrap') })
Expand Down

0 comments on commit fb64dfe

Please sign in to comment.