feat: only download libraries if not present

This commit is contained in:
HerozDotExe 2026-01-08 11:56:24 +01:00
parent 5b0bd8a73e
commit 46c85401e5

View file

@ -28,7 +28,10 @@ export async function LibrariesDownloader(
) {
const libs = getLibraries(versionManifest, librariesRoot);
const dPool = new DownloadPool(libs, { pQueueOptions: { concurrency: 5 } });
const dPool = new DownloadPool(libs, {
pQueueOptions: { concurrency: 5 },
overwrite: false,
});
return dPool;
}