test build

This commit is contained in:
Zamitto 2024-05-30 12:54:23 -03:00
parent 5f292bc53a
commit 61580d5765
2 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

@ -49,6 +49,11 @@ const downloadAria2WindowsAndLinux = async () => {
}; };
const copyAria2Macos = async () => { const copyAria2Macos = async () => {
if (fs.existsSync("aria2")) {
console.log("Aria2 already exists, skipping...");
return;
}
console.log("Checking if aria2 is installed..."); console.log("Checking if aria2 is installed...");
const isAria2Installed = spawnSync("which", ["aria2c"]).status; const isAria2Installed = spawnSync("which", ["aria2c"]).status;