mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-12 11:12:07 +00:00
8 lines
166 B
JavaScript
8 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"
|
|
);
|
|
}
|