hack: try to exclude a broken folder
diff --git a/npm/private/npm_import.bzl b/npm/private/npm_import.bzl index 641a312..0db819b 100644 --- a/npm/private/npm_import.bzl +++ b/npm/private/npm_import.bzl
@@ -452,7 +452,7 @@ # npm packages are always published with one top-level directory inside the tarball, tho the name is not predictable # so we use tar here which takes a --strip-components N argument instead of rctx.download_and_extract - tar_args = ["tar", "-xf", _TARBALL_FILENAME, "--strip-components", "1", "-C", _EXTRACT_TO_DIRNAME, "--no-same-owner", "--no-same-permissions"] + tar_args = ["tar", "-xf", _TARBALL_FILENAME, "--exclude", "vendor/libgit2/tests/**", "--strip-components", "1", "-C", _EXTRACT_TO_DIRNAME, "--no-same-owner", "--no-same-permissions"] system_tar = detect_system_tar(rctx) if rctx.attr.system_tar == "auto" else rctx.attr.system_tar if system_tar == "gnu":