Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions private/rules/v3_lock_file.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,11 @@ def _get_artifacts(lock_file_contents):
root_unpacked["packaging"] = "jar"

for (classifier, shasum) in data.get("shasums", {}).items():
# Skip artifacts with null shasum that can't be downloaded
# e.g., AAR-only dependencies with no sources
if shasum == None:
continue

root_unpacked["classifier"] = classifier
coordinates = to_external_form(root_unpacked)
key = to_key(root_unpacked)
Expand Down