diff --git a/scripts/images.js b/scripts/images.js index 27dc16f..c1481a9 100644 --- a/scripts/images.js +++ b/scripts/images.js @@ -32,6 +32,11 @@ const images = [{ (async () => { for (let image of images) { + // we won't assume malicious intent... if the images exist, don't bother fetching them + if (await fs.exists(image.path)) { + continue; + } + const { url, name } = image; const res = await fetch(url);