diff --git a/src/sinol_make/__init__.py b/src/sinol_make/__init__.py index 00e37c06..03337790 100644 --- a/src/sinol_make/__init__.py +++ b/src/sinol_make/__init__.py @@ -9,7 +9,7 @@ from sinol_make import util, oiejq -__version__ = "1.5.10" +__version__ = "1.5.11" def configure_parsers(): diff --git a/src/sinol_make/helpers/cache.py b/src/sinol_make/helpers/cache.py index 2a2d34e3..24128b7f 100644 --- a/src/sinol_make/helpers/cache.py +++ b/src/sinol_make/helpers/cache.py @@ -61,7 +61,7 @@ def save_compiled(file_path: str, exe_path: str, is_checker: bool = False): :param exe_path: Path to the compiled executable :param is_checker: Whether the compiled file is a checker. If True, all cached tests are removed. """ - info = get_cache_file(file_path) + info = CacheFile() info.executable_path = exe_path info.md5sum = util.get_file_md5(file_path) info.save(file_path)