From 97d307a589520ac88476458b6ebb80ee985d5521 Mon Sep 17 00:00:00 2001 From: VerstreuteSeele Date: Sun, 18 Dec 2022 20:49:05 +0100 Subject: [PATCH] First Release --- automate.py | 2 +- fbt_options.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/automate.py b/automate.py index f14f35939..25f01c58c 100644 --- a/automate.py +++ b/automate.py @@ -41,7 +41,7 @@ def main(): new_build = ren os.system(f"cd {Firmware_base} && ren {old_build} {new_build}") os.system(f'git add * && git commit -m "{commit}"') - zipfile = shutil.make_archive(ren, 'zip', new_build) + zipfile = shutil.make_archive(os.path.join(Firmware_base, ren), 'zip', new_build) print(zipfile) input() os.system(f'''gh release create {ren.split('"')[1].split('"')[0]} -R "ClaraCrazy/flipper-firmware" --generate-notes {zipfile}''') diff --git a/fbt_options.py b/fbt_options.py index d642cc647..c2b849292 100644 --- a/fbt_options.py +++ b/fbt_options.py @@ -14,7 +14,7 @@ DEBUG = 0 # Suffix to add to files when building distribution # If OS environment has DIST_SUFFIX set, it will be used instead -DIST_SUFFIX = "CC_CL-0003" +DIST_SUFFIX = "CC_CL-0004" # Coprocessor firmware COPRO_OB_DATA = "scripts/ob.data"