- Beta-Builds: Updated bundleID suffix with beta build to match source

This commit is contained in:
Magesh K
2025-02-08 12:17:45 +05:30
parent cf81d2876c
commit 61086a681a
4 changed files with 13 additions and 1 deletions

View File

@@ -106,7 +106,12 @@ new_version = {
"size": SIZE,
"sha256": SHA256,
}
versions.insert(0, new_version)
if versions is []:
versions.append(new_version)
else:
# versions.insert(0, new_version) # insert at front
versions[0] = new_version # replace top one
# Save the updated JSON to the input file
try: