From 993abc6e44b80402001f24982c891775a5bad8df Mon Sep 17 00:00:00 2001 From: Mark Tomko Date: Tue, 20 Feb 2024 13:48:48 -0800 Subject: [PATCH] Fix version regex in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3c52347..7d32034 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ fullversion := $(shell grep -m 1 'ThisBuild / version :=' ./version.sbt | perl -pe 's/^ThisBuild \/ version := "([0-9]+\.[0-9]+\.[0-9]+).*$$/$$1/g') -version := $(shell grep -m 1 'ThisBuild / version :=' ./version.sbt | perl -pe 's/^ThisBuild \/ version := "([0-9]+\.[0-9+]).*$$/$$1/g') +version := $(shell grep -m 1 'ThisBuild / version :=' ./version.sbt | perl -pe 's/^ThisBuild \/ version := "([0-9]+\.[0-9]+).*$$/$$1/g') .phony: print-version print-fullversion print-version: