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 c5f2d24 commit 74a5e98Copy full SHA for 74a5e98
client/src/commands/code_analysis.ts
@@ -127,6 +127,8 @@ let resultsToDiagnostics = (
127
};
128
129
130
+let platformDir = process.arch === "arm64" ? process.platform + process.arch : process.platform;
131
+
132
let analysisDevPath = path.join(
133
path.dirname(__dirname),
134
"..",
@@ -141,7 +143,7 @@ let analysisProdPath = path.join(
141
143
142
144
"server",
145
"analysis_binaries",
- process.platform,
146
+ platformDir,
147
"rescript-editor-analysis.exe"
148
);
149
0 commit comments