Skip to content

Commit

Permalink
example: make sure capital letter targets work (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn authored Sep 14, 2023
1 parent 9ab1ffe commit 98328b4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions examples/various/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
load("//oci:defs.bzl", "oci_image")
load("@bazel_skylib//rules:build_test.bzl", "build_test")

oci_image(
name = "imagE",
architecture = "amd64",
cmd = ["noop"],
os = "linux",
)


build_test(
name = "test",
targets = [
":imagE",
],
)

0 comments on commit 98328b4

Please sign in to comment.