From ee36eb8d125c9a4535964e2b50642a66b74aca9b Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Thu, 28 Mar 2024 01:15:06 +0100 Subject: [PATCH] [ios] Use today's commits count and two numbers from commit hash in the build number Now it looks like this: ios_version 2024.03.27 ios_build 1.44211.31960 And allows deploying different versions from branches into the TestFlight without clashing Signed-off-by: Alexander Borsuk --- tools/unix/version.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/unix/version.sh b/tools/unix/version.sh index b65be99e9b..aaa57abb65 100755 --- a/tools/unix/version.sh +++ b/tools/unix/version.sh @@ -31,7 +31,9 @@ function ios_version { } function ios_build { - echo "$COUNT" + MINOR=$((16#${GIT_HASH:0:4})) + PATCH=$((16#${GIT_HASH:4:4})) + echo "$COUNT.$MINOR.$PATCH" } function android_name {