Skip to content

Commit

Permalink
Allow to overwrite variables in Makefile (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtaniwaki authored and VaibhavPage committed Feb 25, 2019
1 parent 72fc6f2 commit 506cc70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ override LDFLAGS += \
-X ${PACKAGE}.gitTreeState=${GIT_TREE_STATE}

# docker image publishing options
DOCKER_PUSH=true
IMAGE_NAMESPACE=argoproj
IMAGE_TAG=v0.7
DOCKER_PUSH?=true
IMAGE_NAMESPACE?=argoproj
IMAGE_TAG?=v0.7

ifeq (${DOCKER_PUSH},true)
ifndef IMAGE_NAMESPACE
Expand Down Expand Up @@ -260,4 +260,4 @@ openapi-gen:
./hack/update-openapigen.sh

.PHONY: codegen
codegen: clientgen openapigen protogen
codegen: clientgen openapigen protogen

0 comments on commit 506cc70

Please sign in to comment.