mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-01-23 13:34:54 +03:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
const fs = require("fs");
|
|
|
|
if (process.platform === "win32") {
|
|
fs.copyFileSync(
|
|
"node_modules/ps-list/vendor/fastlist-0.3.0-x64.exe",
|
|
"fastlist.exe"
|
|
);
|
|
}
|