mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-01-23 21:44:55 +03:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
const fs = require("fs");
|
|
|
|
if (process.platform === "win32") {
|
|
if (!fs.existsSync("resources/dist")) {
|
|
fs.mkdirSync("resources/dist");
|
|
}
|
|
|
|
fs.copyFileSync(
|
|
"node_modules/ps-list/vendor/fastlist-0.3.0-x64.exe",
|
|
"resources/dist/fastlist.exe"
|
|
);
|
|
}
|