Skip to content

Commit

Permalink
deploy: Exclude ctre_sim directory (#129)
Browse files Browse the repository at this point in the history
auscompgeek authored Jan 17, 2025
1 parent a3b8216 commit d6251e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robotpy_installer/cli_deploy.py
Original file line number Diff line number Diff line change
@@ -655,7 +655,7 @@ def _copy_to_tmpdir(

# skip .svn, .git, .hg, etc directories
for d in dirs[:]:
if d.startswith(".") or d in ("__pycache__", "venv"):
if d.startswith(".") or d in ("__pycache__", "ctre_sim", "venv"):
dirs.remove(d)

# skip .pyc files

0 comments on commit d6251e2

Please sign in to comment.