Skip to content

Commit 1bbae1d

Browse files
committed
fix makefile
1 parent b2cf9b2 commit 1bbae1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configs/development/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: build docker-build down up ensure-consul
22
all: build ensure-consul docker-build down up
33

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)
4+
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)
55
CONSUL_ZIP := consul_$(CONSUL_VERSION)_linux_arm64.zip
66

77
build:
@@ -29,4 +29,4 @@ down:
2929
docker compose down
3030

3131
clean:
32-
rm -f tagit consul $(CONSUL_ZIP)
32+
rm -f tagit consul $(CONSUL_ZIP)

0 commit comments

Comments
 (0)