From 3d9977393133c6580b704029824f9eafe031af0b Mon Sep 17 00:00:00 2001 From: d10sfan Date: Wed, 13 Dec 2023 19:55:12 -0600 Subject: [PATCH] Ignore bzip2 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index df1c6a8..9fb55a8 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const path = require('path'); const vcpkgPortPath = path.join(__dirname, 'vcpkg', 'ports'); const overlaysPath = path.join(__dirname, 'overlays'); -const ignorePackages = ['sdl2-mixer', 'libvorbis', 'libogg', 'gettext', "libwebp"]; +const ignorePackages = ['sdl2-mixer', 'libvorbis', 'libogg', 'gettext', "libwebp", "bzip2"]; const foundPackagesKeys = {}; async function getInstalledSystemPackages() {