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 791ce5b commit 3408055Copy full SHA for 3408055
src/extension.ts
@@ -317,7 +317,7 @@ class ODBinaryDistribution implements OpenDreamInstallation {
317
};
318
319
const compilerPath = `${this.path}/DMCompiler_${getArchSuffix()}/DMCompiler${os.platform() === "win32" ? ".exe" : ""}`;
320
- let compileProcess = spawn(compilerPath, [dme], { cwd: workspaceFolder.path });
+ let compileProcess = spawn(compilerPath, [dme], { cwd: workspaceFolder.fsPath });
321
322
compileProcess.on('close', (code) => {
323
console.log(`Compiler process exited with code ${code}`);
0 commit comments