🐛 Delete Old Changelog file

This commit is contained in:
Nikhil Badyal
2023-12-16 11:16:08 +05:30
parent 63c7aec67e
commit b5b6333cf6
+2 -1
View File
@@ -10,7 +10,7 @@ from src.downloader.download import Downloader
from src.exceptions import AppNotFoundError, BuilderError, PatchesJsonLoadError, PatchingFailedError
from src.parser import Parser
from src.patches import Patches
from src.utils import check_java
from src.utils import check_java, delete_old_changelog
def get_app(config: RevancedConfig, app_name: str) -> APP:
@@ -28,6 +28,7 @@ def main() -> None:
Downloader.extra_downloads(config)
if not config.dry_run:
check_java()
delete_old_changelog()
logger.info(f"Will Patch only {config.apps}")
for possible_app in config.apps: