Skip to content

Commit

Permalink
download-macos-libs.py: Skip mesa, llvm
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Dec 27, 2024
1 parent 7944150 commit 0308baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/download-macos-libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def verify_pkg(self, pkg_path, sig_path):
shell=True, check=True)

def is_pkg_skipped(self, pkg_name):
return any(pkg_name.startswith(n) for n in ('python', 'ncurses'))
return any(pkg_name.startswith(n) for n in ('python', 'ncurses', 'mesa', 'llvm'))

def install_pkg(self, pkg_name):
if self.is_pkg_installed(pkg_name):
Expand Down

0 comments on commit 0308baa

Please sign in to comment.