Skip to content

Commit

Permalink
chore: ignoring errors in case of docker N, if devops directory doesn…
Browse files Browse the repository at this point in the history
…'t exist
  • Loading branch information
ashupednekar committed Sep 28, 2024
1 parent f155900 commit 182f9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robyn/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def create_robyn_app():
if scaffold_type == "simple":
os.remove(f"{final_project_dir_path}/Dockerfile")
else:
shutil.rmtree(f"{final_project_dir_path}/devops")
shutil.rmtree(f"{final_project_dir_path}/devops", ignore_errors=True)

print(f"New Robyn project created in '{final_project_dir_path}' ")

Expand Down

0 comments on commit 182f9cf

Please sign in to comment.