We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c0b61 commit d72191fCopy full SHA for d72191f
1 file changed
src/util/processes.ts
@@ -13,7 +13,7 @@ export function terminateProcess(p: cp.ChildProcess, extensionPath: string): Ter
13
if (process.platform === 'darwin' || process.platform === 'linux') {
14
try {
15
const cmd = path.join(extensionPath, 'scripts', 'terminateProcess.sh');
16
- const result = cp.spawnSync("/usr/bin/flatpak-spawn", ["--host", cmd, p.pid!.toString()]);
+ const result = cp.spawnSync(cmd, [p.pid!.toString()]);
17
if (result.error) {
18
return { success: false, error: result.error };
19
}
0 commit comments