Commit edc21aca authored by Michelle Noorali's avatar Michelle Noorali

fix(*): verify $DOCKER_PROJECT is set if using gcr

parent 9556d4ca
......@@ -63,7 +63,9 @@ container: .project .docker binary extras
.project:
ifeq ($(DOCKER_REGISTRY), gcr.io)
$(error "One or both of DOCKER_REGISTRY and DOCKER_PROJECT must be set.")
ifeq ($(DOCKER_PROJECT),)
$(error "Both DOCKER_REGISTRY and DOCKER_PROJECT must be set.")
endif
endif
.docker:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment