From fb28c4825cce4e28a3c7eecec69708bf4e0b3db6 Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 2 Oct 2023 22:21:38 -0700 Subject: [PATCH] Designate `make version` as `PHONY` (#2228) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f3c9d6512..8c3edafc1 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ # PATCH: Increment this each time you want to publish a new Firezone version. version = 1.20231001.0 +.PHONY: version + version: @find elixir/ -name "mix.exs" -exec sed -i '' -e '/mark:automatic-version/{n;s/[0-9]*\.[0-9]*\.[0-9]*/$(version)/;}' {} \; @find rust/ -name "Cargo.toml" -exec sed -i '' -e '/mark:automatic-version/{n;s/[0-9]*\.[0-9]*\.[0-9]*/$(version)/;}' {} \;