From 769870112a6422d4564cb4ab0bdeeb7247ed9c94 Mon Sep 17 00:00:00 2001 From: maksim Date: Wed, 28 Sep 2022 14:57:59 +0300 Subject: [PATCH] remove aliases from bin dir --- project/scripts/clean_before_transpilation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/scripts/clean_before_transpilation.py b/project/scripts/clean_before_transpilation.py index 27a5cbbd..8c63bd5c 100755 --- a/project/scripts/clean_before_transpilation.py +++ b/project/scripts/clean_before_transpilation.py @@ -39,7 +39,7 @@ def main(path_to_files: Path, cleaning_patterns) -> None: path_to_files = path_to_files.parent tools.clear_dir_by_patterns(path_to_files, cleaning_patterns, recursive=True) tools.remove_empty_dirs(path_to_files) - tools.clear_dir_by_patterns(settings.get_setting('path_to_c2eo_transpiler'), {'*.eo'}) + tools.clear_dir_by_patterns(settings.get_setting('path_to_c2eo_transpiler'), {'*.eo', '*.alias'}) def create_parser() -> argparse.ArgumentParser: