🐛 Added missing call to extra downloads

This commit is contained in:
Nikhil Badyal
2023-11-10 23:39:00 +05:30
committed by Nikhil Badyal
parent fd605ddabe
commit 39e803979a
+2
View File
@@ -6,6 +6,7 @@ from loguru import logger
from src.app import APP
from src.config import RevancedConfig
from src.downloader.download import Downloader
from src.exceptions import AppNotFoundError, BuilderError, PatchesJsonLoadError, PatchingFailedError
from src.parser import Parser
from src.patches import Patches
@@ -24,6 +25,7 @@ def main() -> None:
env = Env()
env.read_env()
config = RevancedConfig(env)
Downloader.extra_downloads(config)
if not config.dry_run:
check_java()