We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de6d48f commit a7c722dCopy full SHA for a7c722d
src/engines/graaljs.js
@@ -62,13 +62,10 @@ class GraalJSInstaller extends Installer {
62
const root = `graaljs-${this.version}-${getFilename()}`;
63
let graaljs;
64
if (platform === 'darwin-x64') {
65
- await this.registerAsset(`${root}/Contents/Home/lib/libjsvm.dylib`);
66
graaljs = await this.registerAsset(`${root}/Contents/Home/bin/js`);
67
} else if (platform === 'win32-x64') {
68
- await this.registerAsset(`${root}/lib/jsvm.dll`);
69
graaljs = await this.registerAsset(`${root}/bin/js.exe`);
70
} else {
71
- await this.registerAsset(`${root}/lib/libjsvm.so`);
72
graaljs = await this.registerAsset(`${root}/bin/js`);
73
}
74
this.binPath = await this.registerScript('graaljs', `${graaljs}`);
0 commit comments