2023-03-12 10:49:02 +01:00
|
|
|
import { spawn } from "child_process";
|
2023-09-10 20:00:49 +02:00
|
|
|
import { execPath } from "./get-resource-paths";
|
2023-03-12 10:49:02 +01:00
|
|
|
|
2023-05-01 08:55:56 +02:00
|
|
|
export const spawnUpscayl = (
|
|
|
|
command: string[],
|
|
|
|
logit: (...args: any) => void
|
|
|
|
) => {
|
2023-05-01 09:44:12 +02:00
|
|
|
logit("📢 Upscayl Command: ", command);
|
2023-03-12 10:49:02 +01:00
|
|
|
|
2024-01-16 07:30:07 +01:00
|
|
|
const spawnedProcess = spawn(execPath, command, {
|
2023-03-12 10:49:02 +01:00
|
|
|
cwd: undefined,
|
|
|
|
detached: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
process: spawnedProcess,
|
|
|
|
kill: () => spawnedProcess.kill(),
|
|
|
|
};
|
|
|
|
};
|