diff --git a/Makefile b/Makefile index 6ccc2fe8f..ab0bbeac0 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ $(shell scripts/git-hooks-init.sh) -REBAR_VERSION = 3.14.3-emqx-4 +REBAR_VERSION = 3.14.3-emqx-5 REBAR = $(CURDIR)/rebar3 BUILD = $(CURDIR)/build SCRIPTS = $(CURDIR)/scripts @@ -80,13 +80,11 @@ clean-all: .PHONY: deps-all deps-all: $(REBAR) $(PROFILES:%=deps-%) +## deps- is used in CI scripts to download deps and the +## share downloads between CI steps and/or copied into containers +## which may not have the right credentials .PHONY: $(PROFILES:%=deps-%) $(PROFILES:%=deps-%): $(REBAR) get-dashboard -ifneq ($(shell echo $(@) |grep edge),) - @export EMQX_DESC="$${EMQX_DESC} Edge" -else - @export EMQX_DESC="$${EMQX_DESC} Broker" -endif @$(REBAR) as $(@:deps-%=%) get-deps .PHONY: xref