-
Notifications
You must be signed in to change notification settings - Fork 60
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
The command that starts code analysis chooses the analysis binary server/analysis_binaries/darwin
instead of server/analysis_binaries/darwinarm64
. This should be pretty easy to fix by checking the process.arch
The offending code is here:
rescript-vscode/client/src/commands/code_analysis.ts
Lines 138 to 146 in dab2a95
let analysisProdPath = path.join( | |
path.dirname(__dirname), | |
"..", | |
"..", | |
"server", | |
"analysis_binaries", | |
process.platform, | |
"rescript-editor-analysis.exe" | |
); |
I'll open a pull request when I have some free time if I can get the extension building locally.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working