From 54dfc86710f41eb30d8f1a24f676cfc142be2a4a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 17 Oct 2025 10:59:55 +0530 Subject: [PATCH] ... --- setup/unix-ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index 3edc0e146a..3a4d00a7e6 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -161,7 +161,7 @@ def install_grype() -> str: with tarfile.open(fileobj=io.BytesIO(data), mode='r') as tf: tf.extract('grype', path=dest, filter='fully_trusted') exe = os.path.join(dest, 'grype') - subprocess.run([exe, 'db', 'update']) + subprocess.check_call([exe, 'db', 'update']) return exe