We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd07026 commit 14f211aCopy full SHA for 14f211a
src/engines/graaljs.js
@@ -54,7 +54,11 @@ class GraalJSInstaller extends Installer {
54
55
async install() {
56
const root = `graalvm-ce-java11-${this.version}`;
57
- this.binPath = await this.registerBinary(`${root}/languages/js/bin/js`, 'graaljs');
+ if (platform === 'darwin64') {
58
+ this.binPath = await this.registerBinary(`${root}/Contents/Home/languages/js/bin/js`, 'graaljs');
59
+ } else {
60
+ this.binPath = await this.registerBinary(`${root}/languages/js/bin/js`, 'graaljs');
61
+ }
62
}
63
64
async test() {
0 commit comments