From a18c0a9426a64f0a77ca220ca4b0b491dfdcd6c9 Mon Sep 17 00:00:00 2001 From: Mike Palmiotto Date: Wed, 14 Dec 2022 16:35:03 -0500 Subject: [PATCH] Fix ci-config for go-version bumps (#18382) The removal of the phony $(OUT) target was preventing `make ci-config` from recognizing changes to .go-version, since it is not an explicit file target. Reintroduce this change to get parity with ENT and fix go version bumps. --- .circleci/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/Makefile b/.circleci/Makefile index 188952dbb2..dc75ea5f1f 100644 --- a/.circleci/Makefile +++ b/.circleci/Makefile @@ -82,6 +82,7 @@ define GEN_CONFIG @mv -f $@.tmp $@ endef +.PHONY: $(OUT) $(OUT): $(CONFIG_SOURCE) $(GEN_CONFIG) @echo "$@ updated"