Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Fix warning message ref invalid rule (#2079)
Browse files Browse the repository at this point in the history
In #1118, the warning
message was mistakenly renamed from `docker_build` to `container_build`.

`container_build` does not exist in the repository, only `docker_build`
does.
  • Loading branch information
sluongng authored May 4, 2022
1 parent 8f72908 commit 3f2c759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion container/push.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _impl(ctx):
if tarball:
print("Pushing an image based on a tarball can be very " +
"expensive. If the image set on %s is the output of a " % ctx.label +
"container_build, consider dropping the '.tar' extension. " +
"docker_build, consider dropping the '.tar' extension. " +
"If the image is checked in, consider using " +
"container_import instead.")

Expand Down

0 comments on commit 3f2c759

Please sign in to comment.