From c25d1ccf1e205b2781ecd0de91e91d35e57b79bc Mon Sep 17 00:00:00 2001 From: Yann Gautier Date: Thu, 8 Feb 2024 18:40:27 +0100 Subject: [PATCH] fix(build): move comment for VERSION_PATCH Having a comment at the end of VERSION_PATCH definition line prevent the release script to work properly. Move it on the previous line. Signed-off-by: Yann Gautier Change-Id: I4008ccbccd512edf33f67c645b38937ad1af9777 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fc4169757..c1448fa6f 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,8 @@ # VERSION_MAJOR := 2 VERSION_MINOR := 10 -VERSION_PATCH := 0 # Only used for LTS releases +# VERSION_PATCH is only used for LTS releases +VERSION_PATCH := 0 VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} # Default goal is build all images