1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 10:47:56 +01:00
upscayl/electron/utils/spawn-upscayl.ts
2023-10-14 06:30:49 +05:30

21 lines
440 B
TypeScript

import { spawn } from "child_process";
import { execPath } from "./get-resource-paths";
export const spawnUpscayl = (
binaryName: string,
command: string[],
logit: (...args: any) => void
) => {
logit("📢 Upscayl Command: ", command);
const spawnedProcess = spawn(execPath("bin"), command, {
cwd: undefined,
detached: false,
});
return {
process: spawnedProcess,
kill: () => spawnedProcess.kill(),
};
};