Avoid unnecessary else in Makefile

Change-type: patch
This commit is contained in:
Pagan Gazzard 2019-07-19 18:19:59 +01:00
parent 34983651d0
commit 3945bb3a87

View File

@ -154,7 +154,7 @@ endif
--build-arg ARCH=$(ARCH) \
--build-arg VERSION=$(shell jq -r .version package.json) \
--build-arg DEFAULT_MIXPANEL_TOKEN=$(MIXPANEL_TOKEN) \
`if [ -z "$$DEBUG" ]; then echo ''; else echo '-f Dockerfile.debug'; fi` \
`if [ -n "$$DEBUG" ]; then echo '-f Dockerfile.debug'; fi` \
-t $(IMAGE) .
supervisor: