Skip to content

Commit

Permalink
fix: apt_deb_repository bzl_library missing dep (#117)
Browse files Browse the repository at this point in the history
45509b0 added `version_constraint` to `apt_deb_repository.bzl`
dependencies but it was missing from its `bzl_library` `deps`.
  • Loading branch information
jjmaestro authored Nov 27, 2024
1 parent 6598c69 commit 99dca97
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apt/private/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ bzl_library(
name = "apt_deb_repository",
srcs = ["apt_deb_repository.bzl"],
visibility = ["//apt:__subpackages__"],
deps = [":util"],
deps = [
":util",
":version_constraint",
],
)

bzl_library(
Expand Down

0 comments on commit 99dca97

Please sign in to comment.