We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2cf9b2 commit 1bbae1dCopy full SHA for 1bbae1d
configs/development/Makefile
@@ -1,7 +1,7 @@
1
.PHONY: build docker-build down up ensure-consul
2
all: build ensure-consul docker-build down up
3
4
-CONSUL_VERSION := $(shell curl -sL https://releases.hashicorp.com/consul/ | grep -Eo 'consul_[0-9]+\.[0-9]+\.[0-9]+' | sort -V | tail -1 | cut -d'_' -f2)
+CONSUL_VERSION := $(shell curl -sL https://releases.hashicorp.com/consul/ | grep -v -- -rc | grep -Eo 'consul_[0-9]+\.[0-9]+\.[0-9]+' | sort -V | tail -1 | cut -d'_' -f2)
5
CONSUL_ZIP := consul_$(CONSUL_VERSION)_linux_arm64.zip
6
7
build:
@@ -29,4 +29,4 @@ down:
29
docker compose down
30
31
clean:
32
- rm -f tagit consul $(CONSUL_ZIP)
+ rm -f tagit consul $(CONSUL_ZIP)
0 commit comments