1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 19:38:22 +02:00
upscayl/electron/binaries.ts
2022-11-12 02:17:00 +05:30

26 lines
866 B
TypeScript

/*
appRootDir is the resources directory inside the unpacked electron app temp directory.
resources contains app.asar file, that contains the main and renderer files.
We're putting resources/{os}/bin from project inside resources/bin of electron. Same for the models directory as well.
*/
import { join, dirname, resolve } from "path";
import getPlatform from "./getPlatform";
import isDev from "electron-is-dev";
import { app } from "electron";
const appRootDir = app.getAppPath();
const binariesPath = isDev
? join(appRootDir, "resources", getPlatform()!, "bin")
: join(dirname(appRootDir), "bin");
const execPath = (execName) =>
resolve(join(binariesPath, `./upscayl-${execName}`));
const modelsPath = isDev
? resolve(join(appRootDir, "resources", "models"))
: resolve(join(dirname(appRootDir), "models"));
export { execPath, modelsPath };