diff --git a/src/build_pyright.py b/src/build_pyright.py index e80af1f..fb1851f 100644 --- a/src/build_pyright.py +++ b/src/build_pyright.py @@ -57,7 +57,9 @@ def install_pyright_dependencies(pyright_version: str): logger.info(f"Install pyright {pyright_version} dependencies") with chdir(f"./temp/pyright-{pyright_version}"): - return_code = subprocess.call([sys.executable, "-m", "pybun", "install"]) + return_code = subprocess.call( + [sys.executable, "-m", "pybun", "install", "--ignore-scripts"] + ) if return_code != 0: logger.error(f"Failed with code {return_code}") return