diff --git a/.gitignore b/.gitignore index 410443942446..2ce3aadd0139 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,6 @@ compile_commands.json # generated by utils/treesitter/helix.sh /.helix/ + +# Ignore .DS_Store files +.DS_Store diff --git a/scripts/fix_cc_deps.py b/scripts/fix_cc_deps.py index 99f925470e56..63d452d57e11 100755 --- a/scripts/fix_cc_deps.py +++ b/scripts/fix_cc_deps.py @@ -96,7 +96,6 @@ def remap_file(label: str) -> str: return path.replace(":", "/") assert repo in EXTERNAL_REPOS, repo return EXTERNAL_REPOS[repo].remap(path) - exit(f"Don't know how to remap label '{label}'") def get_bazel_list(list_child: ElementTree.Element, is_file: bool) -> Set[str]: