Skip to content

Commit

Permalink
Fix some debian metadata
Browse files Browse the repository at this point in the history
Without ca-certificates, we cannot fetch bazel from https.

We also conflict with bazel-bootstrap due to /usr/bin/bazel.
  • Loading branch information
jwnimmer-tri committed Oct 24, 2024
1 parent 2f239be commit a8d8054
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deb/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ ARCHES = ["amd64", "arm64"]
pkg_deb(
name = "bazelisk-{}_deb".format(arch),
architecture = arch,
conflicts = ["bazel"],
depends = ["ca-certificates"],
conflicts = ["bazel", "bazel-bootstrap"],
data = ":bazelisk-{}_tar".format(arch),
description_file = ":description.txt",
homepage = "https://github.com/bazelbuild/bazelisk",
Expand Down

0 comments on commit a8d8054

Please sign in to comment.