Skip to content

Commit

Permalink
move /*.bzl bazel rules into def
Browse files Browse the repository at this point in the history
  • Loading branch information
BenTheElder committed Nov 8, 2018
1 parent cf22e5d commit 0cd9505
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ rules_typescript_dependencies()

# Setup TypeScript toolchain
load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace")
load(":test_infra.bzl", "http_archive_with_pkg_path")
load("//def:test_infra.bzl", "http_archive_with_pkg_path")

http_archive_with_pkg_path(
name = "ruamel_yaml",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion prow/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ load("@io_bazel_rules_docker//container:bundle.bzl", "container_bundle")
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
load("//prow:def.bzl", "prefix", "tags")
load(
"//:image.bzl",
"//def:image.bzl",
image_tags = "tags",
)

Expand Down
2 changes: 1 addition & 1 deletion prow/def.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ load("@io_bazel_rules_docker//go:image.bzl", "go_image")
load("@io_bazel_rules_k8s//k8s:object.bzl", "k8s_object")
load("@io_bazel_rules_k8s//k8s:objects.bzl", "k8s_objects")
load(
"//:image.bzl",
"//def:image.bzl",
_docker_tags = "tags",
)

Expand Down
2 changes: 1 addition & 1 deletion testgrid/images/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("//:image.bzl", "tags")
load("//def:image.bzl", "tags")
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
load("@io_bazel_rules_docker//docker:docker.bzl", "docker_bundle")
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
Expand Down

0 comments on commit 0cd9505

Please sign in to comment.