Windows Pty (#206)

Add Windows Pty support, so the terminal works properly on windows
machines
This commit is contained in:
Sylvie Crowe
2024-08-09 18:49:35 -07:00
committed by GitHub
parent 4498ca8e9d
commit c192fe2663
9 changed files with 98 additions and 59 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ function getWaveSrvPath(): string {
if (process.platform === "win32") {
const winBinName = `${wavesrvBinName}.exe`;
const appPath = path.join(getGoAppBasePath(), "bin", winBinName);
return `& "${appPath}"`;
return `${appPath}`;
}
return path.join(getGoAppBasePath(), "bin", wavesrvBinName);
}