From dd895a5c0d0d21b039574182a0c0f1c03727299b Mon Sep 17 00:00:00 2001 From: iranl Date: Thu, 1 Aug 2024 15:22:48 +0200 Subject: [PATCH] Update ota_manifest.py --- resources/ota_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/ota_manifest.py b/resources/ota_manifest.py index de486d7..fbc8031 100644 --- a/resources/ota_manifest.py +++ b/resources/ota_manifest.py @@ -41,7 +41,7 @@ with open('ota/manifest.json', 'r+') as json_file: if (args.ota_type == "release"): data[args.ota_type]['fullversion'] = str(version) else: - data[args.ota_type]['fullversion'] = str(version) + "-" + args.ota_type + str(number) + data[args.ota_type]['fullversion'] = str(version) + "-" + args.ota_type + str(data[args.ota_type]['number']) data[args.ota_type]['build'] = args.build json_file.seek(0)