From 0fb0fade0737c3cfeed8e7e8a3725981c948670c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 24 Sep 2025 10:29:44 +0530 Subject: [PATCH] Also scan windows bundle --- setup/unix-ci.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 4fb128998e..1795b77e11 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -180,6 +180,7 @@ IGNORED_DEPENDENCY_CVES = [ LINUX_BUNDLE = 'linux-64' MACOS_BUNDLE = 'macos-64' +WINDOWS_BUNDLE = 'windows-64' def install_bundle(dest=SW, which=''): @@ -196,6 +197,8 @@ def check_dependencies() -> None: install_bundle(dest, os.path.basename(dest)) dest = os.path.join(SW, MACOS_BUNDLE) install_bundle(dest, os.path.basename(dest)) + dest = os.path.join(SW, WINDOWS_BUNDLE) + install_bundle(dest, os.path.basename(dest)) grype = install_grype() with open((gc := os.path.expanduser('~/.grype.yml')), 'w') as f: print('ignore:', file=f)