Skip to content

Commit

Permalink
Update tools/setup_presubmit_repos.py
Browse files Browse the repository at this point in the history
Co-authored-by: Markus Hofbauer <markus.hofbauer@tum.de>
  • Loading branch information
meteorcloudy and hofbi authored Jan 10, 2025
1 parent da6b5e2 commit e774679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/setup_presubmit_repos.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def main():
logging.info("Creating anonymous module repo at: %s", anonymous_module_root)
try:
shutil.rmtree(anonymous_module_root, ignore_errors=True)
os.makedirs(anonymous_module_root, exist_ok=True)
anonymous_module_root.mkdir(exist_ok=True, parents=True)
bcr_presubmit.create_anonymous_repo(module_name, module_version, anonymous_module_root)
logging.info("Anonymous module repo ready at: %s", anonymous_module_root)
print_build_instruction(module_name, module_version, anonymous_module_root, anonymous_module_task_config)
Expand Down

0 comments on commit e774679

Please sign in to comment.