diff --git a/ctcci/ctcci.py b/ctcci/ctcci.py index 2ca1853..35e231a 100644 --- a/ctcci/ctcci.py +++ b/ctcci/ctcci.py @@ -205,6 +205,8 @@ for patch_name in PATCHES: "font", font)) # Apply any other patches else: + patch(patch_file, WORK_APK_PATH, patch_name) + patch_script = os.path.join(REPO_FOLDER, "patches", patch_name, f"{VERSION}.sh") if os.path.exists(patch_script): @@ -212,8 +214,6 @@ for patch_name in PATCHES: shell=True, cwd=WORK_APK_PATH) - patch(patch_file, WORK_APK_PATH, patch_name) - # Pack the APK subprocess.run(f"{APKTOOL_BIN} b discord", shell=True, diff --git a/patches/necessary/968.sh b/patches/notrack/968.sh similarity index 100% rename from patches/necessary/968.sh rename to patches/notrack/968.sh